
function TBar_onmouseout()
{
for (cntLoop=0;cntLoop<7;cntLoop++)
	{
	try
		{
		ViewShop(cntLoop).style.backgroundColor="#9ccf00"
		}
	catch(e)
		{
		}
	}
}

function ViewShop_onmouseover(n)
{
	
	var cntLoop
	var qCount
	qCount=0
	ns4 = (document.layers)? true:false
	ie4 = (document.all)? true:false
	if (ie4)
		
		{
		
		ViewShop(n).style.backgroundColor="#ffcf31"
		}
	else
		{

		}
		//document.elements["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?")
	}

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()
	
	
	}

}