// JavaScript Document
<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
         function FORM1_onsubmit1()
{
if (document.thisformonly.pricez.value=="")
	{
		alert("Do Estimate first then you can make an order!");
		document.thisformonly.pricez.focus();
		return false;
	}
	
	if (document.thisformonly.pricez.value<=10)
	{
		alert("Minimum Order is $10 (Ten Dollars)!");
		document.thisformonly.pricez.focus();
		return false;
	}
}

         function pro_onsubmit1()
{
if (document.superform.pricez.value=="")
	{
		alert("Do Estimate first then you can make an order!");
		document.thisform.pricez.focus();
		return false;
	}
	
	if (document.superform.pricez.value<=10)
	{
		alert("Minimum Order is $10 (Ten Dollars)!");
		document.superform.pricez.focus();
		return false;
	}
}

         function r_onsubmitr()
{
if (document.thisformonlyr.pricer.value=="")
	{
		alert("Do Estimate first then you can make an order!");
		document.thisformonlyr.pricer.focus();
		return false;
	}
	
	if (document.thisformonlyr.pricer.value<=10)
	{
		alert("Minimum Order is $10 (Ten Dollars)!");
		document.thisformonlyr.pricer.focus();
		return false;
	}
}


<!--
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=60}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if(window.highting)
clearInterval(highlighting)}
//-->
	function packFormSubmit(packid){
		
		document.getElementById("packid").value=packid;
		document.packForm.submit();
	}

	function countPrice1(){
		var pricePerDay=19.99;
		if(trim(document.getElementById("days1").value)==""){
			alert("Pleast select days.");
			return false;
		}
		var days=parseInt(trim(document.getElementById("days1").value));
		document.getElementById("time1").value=days;
		document.getElementById("price1").value=formatNumber(days*pricePerDay);
	}
	
	function countPrice2(){
		var pricePerDay=13.99;
		if(trim(document.getElementById("days2").value)==""){
			alert("Pleast select days.");
			return false;
		}
		var days=parseInt(trim(document.getElementById("days2").value));
		document.getElementById("time2").value=days;
		document.getElementById("price2").value=formatNumber(days*pricePerDay);
	}
	
	function pvpFormSubmit1(){
		
		if(trim(document.getElementById("days1").value)==""){
			alert("Pleast select days.");
			return false;
		}
		
		document.pvpForm1.submit();
	}
	
	function pvpFormSubmit2(){
		
		if(trim(document.getElementById("days2").value)==""){
			alert("Pleast select days.");
			return false;
		}
		
		document.pvpForm2.submit();
	}

        function yibanformSubmit(){

		document.yibanform.submit();
	}
