
<!-- begin
//Set Price Values and Hidden Fields

		function groov()
		{
	if (document.myform.Groovy.checked == false)
		{document.myform.groovyprice.value = "";  
		  document.myform.Groovy_Multitorial.value = ""; }
	else 	{ document.myform.groovyprice.value = document.myform.Groovy.value*1; 
		  document.myform.Groovy_Multitorial.value = "Groovy Concrete, "; }
		}

		function pond()
		{
	if (document.myform.Ponds.checked == false)
		{document.myform.pondprice.value = ""; 
		  document.myform.Pond_Multitorial.value = "";  }
	else 	{ document.myform.pondprice.value = document.myform.Ponds.value*1;
		  document.myform.Pond_Multitorial.value = "Ponds Budget, ";  }
		}

		
		function rest()
		{
	if (document.myform.Restoration.checked == false)
		{document.myform.restprice.value = "";
		  document.myform.Rest_Multitorial.value = "";  }
	else 	{ document.myform.restprice.value = document.myform.Restoration.value*1;
		  document.myform.Rest_Multitorial.value = "Restoration, "; }
		}

		function straw()
		{
	if (document.myform.Straw.checked == false)
		{document.myform.strawprice.value = "";
		  document.myform.Straw_Multitorial.value = "";   }
	else 	{ document.myform.strawprice.value = document.myform.Straw.value*1;
		   document.myform.Straw_Multitorial.value = "Straw Bale, "; }
		}

		function flag()
		{
	if (document.myform.Flag.checked == false)
		{document.myform.flagprice.value = "";  
		  document.myform.Flag_Multitorial.value = ""; }
	else 	{ document.myform.flagprice.value = document.myform.Flag.value*1;
		  document.myform.Flag_Multitorial.value = "Stone Patios, ";  }
		}

		function retain()
		{
	if (document.myform.Retain.checked == false)
		{document.myform.retainprice.value = "";
		 document.myform.Retain_Multitorial.value = ""; }
	else 	{ document.myform.retainprice.value = document.myform.Retain.value*1;
		  document.myform.Retain_Multitorial.value = "Retaining Walls, "; }
		}

		





	function cd()
		{
	if (document.myform.CD.checked == false)
		{document.myform.cdprice.value = "";
		  document.myform.CD_Multitorial.value = "- Download Delivery "; }
	else 	{ document.myform.cdprice.value = document.myform.CD.value*1;
		    document.myform.CD_Multitorial.value = "- on CD-ROM "; }
		}




	function domesticpriority()
		{
	if (document.myform.Domestic_P_Box.checked == false)
		{document.myform.dom_priority_price.value = "";
		  document.myform.Domestic_Label.value = " "; }
	else 	{ document.myform.dom_priority_price.value = document.myform.Domestic_P_Box.value*1;
		    document.myform.Domestic_Label.value = "- USPS Priority Delivery "; }
		}








	function International()
		{
	if (document.myform.International_Box.checked == false)
		{document.myform.International_price.value = "";
		  document.myform.International_Label.value = " "; }
	else 	{ document.myform.International_price.value = document.myform.International_Box.value*1;
		    document.myform.International_Label.value = "- International USPS Delivery "; }
		}









		function comp()
		{
	if (document.myform.Compilation.checked == false)
			{document.myform.compprice.value = "" ;
		   document.myform.Compilation_Multitorial.value = "Compilation on CD-ROM and Glass Block DVD"; }
			else 	
			{document.myform.compprice.value = document.myform.Compilation.value*1;
		    document.myform.Compilation_Multitorial.value = "Compilation on CD-ROM and Glass Block DVD, ";}

		}

	function glassdvd()
		{
	if (document.myform.Glassdvd.checked == false)
		{document.myform.glassdvdprice.value = ""; 
		  document.myform.Glassdvd_Multitorial.value = "";  }
	else 	{ document.myform.glassdvdprice.value = document.myform.Glassdvd.value*1; 
		  document.myform.Glassdvd_Multitorial.value = "Glass Block DVD, "; } 
	
	alert("Get the Glass Block Combo -Below- and save $$$!)");
		}

function glass()
		{
	if (document.myform.Glass.checked == false)
		{document.myform.glassprice.value = ""; 
		  document.myform.Glass_Multitorial.value = "";  }
	else 	{ document.myform.glassprice.value = document.myform.Glass.value*1; 
		  document.myform.Glass_Multitorial.value = "Glass Block, "; }
		
		alert("Get the Glass Block Combo -Below- and save $$$!)");}


function glassset()
		{
	if (document.myform.Glassset.checked == false)
		{document.myform.glasssetprice.value = ""; 
		  document.myform.Glassset_Multitorial.value = "";  }
	else 	{ document.myform.glasssetprice.value = document.myform.Glassset.value*1; 
		  document.myform.Glassset_Multitorial.value = "Glass Block DVD and CD-ROM Multitorial, "; } 
	
	
		}


//Total Price Before Discount
		function tally()  {

		document.myform.total.value = (document.myform.groovyprice.value*1) + (document.myform.pondprice.value*1) + (document.myform.glassprice.value*1) + (document.myform.glassdvdprice.value*1) + (document.myform.glasssetprice.value*1) + (document.myform.restprice.value*1) + (document.myform.strawprice.value*1) + (document.myform.retainprice.value*1) + (document.myform.flagprice.value*1) + (document.myform.compprice.value*1);



document.myform.total.value = Math.round(document.myform.total.value * 100);
                           document.myform.total.value = document.myform.total.value / 100;


//Compilation Alert

		var discount = document.myform.total.value;
		if(discount > 50.00) {
		document.myform.total.value = 49.99;
		document.myform.Compilation.checked = true;
		document.myform.compprice.value = 49.99;

		document.myform.CD.checked == false;
		document.myform.cdprice.value = "";
		document.myform.CD_Multitorial.value = "";

		document.myform.Flag.checked = false;
		document.myform.Flag_Multitorial.value = "";
		document.myform.flagprice.value = "";

		document.myform.Ponds.checked = false;
		document.myform.Pond_Multitorial.value = "";
		document.myform.pondprice.value = "";

		document.myform.Restoration.checked = false;
		document.myform.Rest_Multitorial.value = "";
		document.myform.restprice.value = "";

		document.myform.Retain.checked = false;
		document.myform.Retain_Multitorial.value = "";
		document.myform.retainprice.value = "";

		document.myform.Glass.checked = false;
		document.myform.Glass_Multitorial.value = "";
		document.myform.glassprice.value = "";

		document.myform.Glassdvd.checked = false;
		document.myform.Glassdvd_Multitorial.value = "";
		document.myform.glassdvdprice.value = "";

		document.myform.Glassset.checked = false;
		document.myform.Glassset_Multitorial.value = "";
		document.myform.glasssetprice.value = "";

		document.myform.Straw.checked = false;
		document.myform.Straw_Multitorial.value = "";
		document.myform.strawprice.value = "";

		document.myform.Groovy.checked = false;
		document.myform.Groovy_Multitorial.value = "";
		document.myform.groovyprice.value = "";

		
		alert("The Total Price Of Your Selections Has Exceeded The Price Of The Compilation\r\rSave OVER $150.00 And Get All 7 Multitorials: $49.99 Limited Time ONLY \:o\)");
		document.myform.Compilation.checked == true;}

//Glass Set

		var glasscombo = ((document.myform.glassdvdprice.value*1) + (document.myform.glassprice.value*1));
		if(glasscombo > 29.00) {
		document.myform.Glassset.checked = true;
		document.myform.glasssetprice.value = 29.99;
		document.myform.total.value = 29.99;

		document.myform.Glass.checked = false;
		document.myform.Glass_Multitorial.value = "";
		document.myform.glassprice.value = "";

		document.myform.Glassdvd.checked = false;
		document.myform.Glassdvd_Multitorial.value = "";
		document.myform.glassdvdprice.value = "";

		
		alert("Take the Glass Set DVD CD-ROM Combo and Save! \:o\)");
		document.myform.Glassset.checked == true;}


	


		}

//Total to pay
		function topay() {

var taxpercent = .07;
	
	if(document.myform.taxcheck.checked == false)  {
		document.myform.taxprice.value = 0;
			document.myform.payment.value = (document.myform.cdprice.value*1) + (document.myform.bidprice.value*1) + (document.myform.dom_priority_price.value*1) + (document.myform.International_price.value*1) + (document.myform.total.value*1); document.myform.taxmessage.value = " No Sales Tax Required Not In AZ "; }

	else 	{
		document.myform.taxprice.value = ((document.myform.International_price.value*1) +(document.myform.dom_priority_price.value*1) + (document.myform.cdprice.value*1) + (document.myform.bidprice.value*1)+ (document.myform.total.value*1)) * taxpercent;

		document.myform.payment.value = ((document.myform.International_price.value*1) +(document.myform.dom_priority_price.value*1) + (document.myform.cdprice.value*1) + (document.myform.bidprice.value*1) + (document.myform.total.value*1)) * (1 + taxpercent);
		  document.myform.taxmessage.value = "- AZ Sales Tax"; }
	

		
document.myform.taxprice.value = Math.round(document.myform.taxprice.value * 100);
                           document.myform.taxprice.value = document.myform.taxprice.value / 100;


document.PayPal.amount.value = Math.round(document.PayPal.amount.value * 100);
                           document.PayPal.amount.value = document.PayPal.amount.value / 100;

document.myform.International_price.value = Math.round(document.myform.International_price.value * 100);
                           document.myform.International_price.value = document.myform.International_price.value / 100;

document.myform.dom_priority_price.value = Math.round(document.myform.dom_priority_price.value * 100);
                           document.myform.dom_priority_price.value = document.myform.dom_priority_price.value / 100;


document.myform.cdprice.value = Math.round(document.myform.cdprice.value * 100);
                           document.myform.cdprice.value = document.myform.cdprice.value / 100;

document.myform.payment.value = Math.round(document.myform.payment.value * 100);
                           document.myform.payment.value = document.myform.payment.value / 100;


		}

//PayPal Configurations

		function pp()  {

		if (document.myform.Compilation.checked == true)
		{document.PayPal.item_name.value = "Compilation All 7 Multitorials"+document.myform.Domestic_Label.value+document.myform.International_Label.value+document.myform.CD_Multitorial.value+" "+document.myform.auction.value;
		 document.myform.Compilation_Multitorial.value = "Compilation All 7 Multitorials "+document.myform.CD_Multitorial.value+" "+document.myform.auction.value;  }
	else 	{ document.PayPal.item_name.value = document.myform.Domestic_Label.value+document.myform.International_Label.value+document.myform.Flag_Multitorial.value+document.myform.Straw_Multitorial.value+document.myform.Retain_Multitorial.value+document.myform.Glass_Multitorial.value+document.myform.Glassdvd_Multitorial.value+document.myform.Rest_Multitorial.value+document.myform.Pond_Multitorial.value+document.myform.Groovy_Multitorial.value+document.myform.Compilation_Multitorial.value+document.myform.CD_Multitorial.value+document.myform.auction.value+document.myform.Glassset_Multitorial.value; }
		
		
		
		document.PayPal.amount.value = document.myform.payment.value;

}






		
//end-->
