function ImageWindow(PID){
	window.open('image.cfm?PID=' + PID, 'ImageWindow', 'width=540,height=420,locationbar=no,statusbar=no,menubar=no,scrollbars=no' );
}
function viewcart(){
document.form[0].submit();
}
function OpenUPS() {
	document.getElementById(1).style.visibility="visible"; 
	document.getElementById(1).style.position="absolute";
}
function CloseUPS() {
	document.getElementById(1).style.visibility="hidden"; 
	document.getElementById(1).style.position="absolute";
}

function wrapperCheckTerms(formName)
 {
   if(checkTermsBox(formName))
   {
     return true;
   }
   else
   {
     return false;
   }
 }

 function checkTermsBox(formName)
 {
   var alertMsg = "Please note: To track your package(s), you must accept the UPS Tracking Terms and Conditions by selecting the checkbox below.";
   if (formName.AgreeToTermsAndConditions.checked)
   {
     return true;
   }
   else
   {
     alert(alertMsg);
     return false;
   }
 }