<!-- The  Add-to-Cart Javascript Version with Confirm Box
// ©2002-2004 G.E. Masana
function AddToCart(what){
ReviewURL="http://ww7.aitsafe.com/cf/review.cfm?userid=9750697";
if (what.elements){
string="";
  for (i=0;i<what.elements.length; i++){
  	
    if (what.elements[i].type!="checkbox"&&what.elements[i].type!="radio"){
   string += "&"+what.elements[i].name+"="+what.elements[i].value;
    }
    
      else {if(what.elements[i].checked==true){string += "&"+what.elements[i].name+"="+what.elements[i].value;
   }}
  }
string=what.action+"?"+string.substring(1);
}
else {
string=what.toString();
}
document.addtocart.src= string;
if (what.elements){
if (confirm("You have added the product to your cart. To Continue Shopping, Please Click OK.\nPlease click Cancel to Checkout. At any point you can click the 'View Your Cart' button on the top left of every page to review the contents. ")){
what.reset();return false;}else{
what.action=ReviewURL;}
}
else{
if (confirm("You have added the product to your cart. To Continue Shopping, Please Click OK.\nPlease click Cancel to Checkout. At any point you can click the 'View Your Cart' button on the top left of every page to review the contents. ")){
return false;}else{
location.href=ReviewURL;return false;}
}
}
document.writeln('<IMG NAME="addtocart" HEIGHT=1 WIDTH=1 BORDER=0>');
//-->
