<?
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# DataDivisions, Build 1.0, 12/11/2003 #
# FileName: funcSaveDisplayConfirm.php #
# File Description: #
# Provides functions required to display confirmation page after user has #
# saved a display #
# #
# +-----------------------------------------------------------------------+ #
# | DataDivisions - Website Statistic Visualization Software | #
# | Copyright (c) 2003, Brian Willison | #
# +-----------------------------------------------------------------------+ #
# | The contents of this file are subject to the GNU General Public | #
# | License version 2 (June 1991). This file and all its contents (incl. | #
# | functions, methods, etc.) are free for general use within any | #
# | community. This software is distributed with the intent to allow | #
# | developers the opportunity to copy, manipulate and revamp this | #
# | application in part or whole for best use cases. | #
# | | #
# | This software is distributed "AS-IS" with no warranties of any kind | #
# | either expressed or implied. | #
# | | #
# | Please refer to the GPL license document for more information: | #
# | (_docs/gplLicense.pdf) | #
# +-----------------------------------------------------------------------+ #
# | Developer, Designer, Initial Creator: | #
# | Brian Willison (hide@address.com) | #
# +-----------------------------------------------------------------------+ #
# | Initial Download Reference: | #
# | http://datadivisions.sourceforge.net | #
# +-----------------------------------------------------------------------+ #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
// Function: Generate Save Display Confirmation Page
function genSaveDisplayConfirmPage() {
genAppSmHeader(pageName);
?>
<form>
<tr>
<td></td>
<td valign="top" colspan="3"><p class="header">The display you requested to save has been added to your "Saved Displays" list. It
will appear in the list the next time you load the main display page.
<p class="header">Please close this window to return to the main display page.
<p align="center"><a href="javascript:finishGo();">Close Window</a>
</td>
</td>
</tr>
<tr>
<td valign="top" colspan="5"><?writeSpacer(1,10);?><input type="text" style="width:0px;height0px;border:0px;"></td>
</tr>
</form>
<?
genAppSmFooter(pageName);
}
?>