function showSelectDataType()
{

Dialog.confirm(
"<strong>Please select the Database data type.</strong><br><font size=\"-1\" color=\"#FF0000\">Note: You may change it after the order is placed.</font>",
{width:300, okLabel: "Excel", cancelLabel:"Access",
buttonClass: "myButtonClass",
id: "myDialogId",

cancel:function(win) {AccessButtonClicked();},
ok:function(win) {document.addtoCart.submit(); return true;} });

}





function showSelectMediaFormat()
{

Dialog.confirm(
"<strong>Please select the Format that you would like to receive.</strong><br><font size=\"-1\" color=\"#FF0000\">Note: You may change it after the order is placed.</font>",
{width:300, okLabel: "Download", cancelLabel:"CD-ROM",
buttonClass: "myButtonClass",
id: "myDialogId",

cancel:function(win) {CDROMButtonClicked();},
ok:function(win) {document.addtoCart.submit(); return true;} });

}




function showSelectReportLength()
{
//changed from 25 => 45 and 50 => 90
Dialog.confirm(
"<br><table align=left><tr><td width=60>&nbsp;</td><td><strong>$45</strong></td><td width=115>&nbsp;</td><td><strong>$90</strong></td></tr></table></strong>",
{width:300, height:100, okLabel: "Single Report", cancelLabel:"Yearly Subscription",
buttonClass: "myButtonClass",
id: "myDialogId",

cancel:function(win) {TwelveReportsButtonClicked();},
ok:function(win) {document.addtoCart.type.value="SINGLE";document.addtoCart.submit(); return true;} });

}

function TwelveReportsButtonClicked()
{
document.addtoCart.type.value="1YR";
document.addtoCart.submit();
return true;
}


function CDROMButtonClicked()
{
document.addtoCart.type.value="US";
document.addtoCart.submit();
return true;
}





function AccessButtonClicked()
{
document.addtoCart.type.value="ACCESS";
document.addtoCart.submit();
return true;
}


function AddToCart()
{
document.addtoCart.submit();
return true;
}


