<!--
function validate(i,z){
if (document.forms[i].qty.value > z){
alert("This Product has only " +z+ " available.\n\nThis number may include any items already in your cart.");
document.forms[i].qty.value=z;
return false;
}
}
//-->
