
function TBar_onmouseout()
{
for (cntLoop=0;cntLoop<7;cntLoop++)
	{
	try
		{
		xDOM("ViewShop" + cntLoop).style.backgroundColor="#9ccf00"
		
		}
	catch(e)
		{
		}
	}
}

function ViewShop_onmouseover(n)
{
	
	xDOM("ViewShop" + n).style.backgroundColor="#ffcf31"
		
	
}


function ContactUs()
{
window.open("Emailus.asp","error_window","width=1028,height=1000,toolbar=YES,location=no,directories=no,status=no,menubar=no")
}


function IntoCart(INVID,Zip)
{


if (Zip=="")
	{
	Zip=prompt("What is your shipping zip code?","")
	if(isNaN(Zip) || Zip=="" || Zip==null || Zip.length!=5)
	    {
	    alert("Invalid Zip Code, Please Use 5 Digits")
	    return
	    }
	else
	    {
	    
	    }
	}

var ie4 = (document.all)? true:false
if (ie4)
	{

	ShipForm.all("hINVID").value=INVID
	ShipForm.all("Zip").value=Zip
	ShipForm.all("formPRICE").value=document.all("P" + INVID).value
	alert("Item Added To Shipping Cart\nWhen You Are Done Adding Items\nClick 'Shopping Cart' Above To Edit/View Your Cart")
	ShipForm.submit()
	}
else
	{
	document.forms["ShipForm"].hINVID.value=INVID
	document.forms["ShipForm"].Zip.value=Zip
	document.forms["ShipForm"].formPRICE.value=document.getElementById("P" + INVID).value
	alert("Item Added To Shipping Cart\nWhen You Are Done Adding Items\nClick 'Shopping Cart' Above To Edit/View Your Cart")
	document.forms["ShipForm"].submit()
	
	
	}

}