<!-- The  Add-to-Cart Javascript Version with Confirm Box
// ©2002-2004 G.E. Masana
function AddToCart(what){
ReviewURL="http://ww11.aitsafe.com/cf/review.cfm?userid=D321529";
if (what.elements){
string="";
  for (i=0;i<what.elements.length; i++){
  	
    if (what.elements[i].type!="checkbox"){
   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 (confirm("Your selection has been added to your shopping cart! You may remove it or adjust quantities at checkout.To Continue Shopping, Click OK\nTo Checkout Click Cancel")){
what.reset();return false;}else{
what.action=ReviewURL;}
}
document.writeln('<IMG NAME="addtocart" HEIGHT=1 WIDTH=1 BORDER=0>');
//-->

