// JavaScript Document

// form submit
<!--
	function submitform()
	{
	document.filterTags.submit();
	}
//-->

// add to cart submission
<!--
	function add_to_cart()
	{
	document.qty.submit();
	}
//-->

// Modify Cart
<!--
	function modify_Cart()
	{
	document.modifyCart.submit();
	}
//-->


//validate send to a friend
<!-- 
function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.STF.sName.value=="") {
themessage = themessage + " - your name";
}
if (document.STF.sEmail.value=="") {
themessage = themessage + " -  your email";
}
if (document.STF.rName.value=="") {
themessage = themessage + " -  friend's name";
}
if (document.STF.rEmail.value=="") {
themessage = themessage + " -  friend's email";
}

//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.STF.submit();
}
else {
alert(themessage);
return false;
   }
}
// -->

