<!-- The  Add-to-Cart Javascript Version  v5
// ©2001-2003 G.E. Masana
function AddToCart(what){

if (what.elements){
string="";
  for (i=0;i<what.elements.length; i++){
  string += "&"+what.elements[i].name+"="+what.elements[i].value;
  }
string=what.action+"?"+string.substring(1);
}
else {
string=what.toString();
}
document.addtocart.src= string;
alert("Your purchase has been added to your cart. Please browse the site for other products, or go to the Shopping Cart if you are ready to check out.");
return false;
}
document.writeln('<IMG NAME="addtocart" HEIGHT=1 WIDTH=1 BORDER=0>');
//-->
