<!-- MENU-LOCATION=NONE -->
<html xmlns:MMString="http://www.macromedia.com/schemes/data/string/">
<HEAD>
<SCRIPT LANGUAGE="Javascript">
// Copyright 2001, 2002, 2003 Macromedia, Inc. All rights reserved.


var PLATFORM = navigator.platform;
var ICON_URL = (PLATFORM == "Win32") ? "../Shared/MM/Images/alertIconWin.gif" : "../Shared/MM/Images/yield28x28.gif";


function isDOMRequired() {
	// Return false, indicating that this object is available in code view.
	return false;
}


function commandButtons()
{
   return new Array(  MM.BTN_OK,     "setResult(true)", 
                      MM.BTN_Cancel, "setResult(false)");
}

function receiveArguments() {
   document.msg.innerHTML = arguments[0]; //Insert the question
}


function setResult(result) {	
   if (typeof MMNotes != 'undefined') { // Set values off of MMNotes object if it exists.
     MMNotes.Confirm_RESULT = result;
     MMNotes.Confirm_DONOTSHOW = document.cbDoNotAsk.checked;

   }
   window.close();
}


function initialize()
{
     // Use the right icon for the platform.
     document.confirmIcon.src = ICON_URL;
}



</SCRIPT>
<TITLE><MMString:loadString id="Commands/ConfirmDSStandardButtons/title" /></TITLE>
<link href="../fields.css" rel="stylesheet" type="text/css">
</HEAD>


<BODY onLoad="initialize()">
<form name="theForm">
   <table border=0 width="300">
     <tr>
       <td > <img name="confirmIcon" src="../Shared/MM/Images/confirmIcon.gif" align="middle" ></td>
       <td valign="middle"></td>
<td valign="middle" width="247"> <span name="msg" style=""><MMString:loadString id="Commands/ConfirmDSStandardButtons/text/Message" /></span> </td>


     </tr>
     <tr>
       <td></td>
       <td valign="middle" colspan="2">
         <input type="checkbox" name="cbDoNotAsk">
         <MMString:loadString id="Commands/ConfirmDSStandardButtons/checkbox/cbDoNotAsk/Dont" /></td>
     </tr>
   </table>
</form>
</BODY>
</HTML>

