
function highlightMenu(pObject,pObjectClass,pImage){

	

       if (document.styleSheets[0].rules)
		//ie
     		var oRules = document.styleSheets[0].rules
       else if (document.styleSheets[0].cssRules)
		//netscape 6
                var oRules = document.styleSheets[0].cssRules


	for (var i=oRules.length-1; i>=0; i--)
	 {
	 //alert(oRules(i).selectorText.toLowerCase());
	  if (oRules(i).selectorText.toLowerCase() == ("." + pObjectClass))
	  {
	   oRules(i).style.backgroundColor = "#FFFFFF";
	   break;
	  }
	 }


	if (document.images) {
		document.images[pImage].src = "graphics/accent.gif";
	}

}

function dehighlightMenu(pObject,pObjectClass,pImage){

       if (document.styleSheets[0].rules)
		//ie
       		var oRules = document.styleSheets[0].rules
       else if (document.styleSheets[0].cssRules)
		//netscape 6
                var oRules = document.styleSheets[0].cssRules


	for (var i=oRules.length-1; i>=0; i--)
	 {
	  if (oRules(i).selectorText.toLowerCase() == ("." + pObjectClass))
	  {
            if (pObjectClass.substring(0,11) == "topmenuitem")
	    { 
	   		oRules(i).style.backgroundColor = "#e6e6e6";
	   		break;
		}
	    else{
	  		oRules(i).style.backgroundColor = "#E6E6E6";
   			break;
	    }		
	  }
	 }

	if (document.images) {
		document.images[pImage].src = "graphics/blankaccent.gif";
	}

}

		function goLocation(pItemID,pFormElementNumber){

			var detailParameters;
			var elementName;
			var quantity;

			quantity = document.forms[0].elements[pFormElementNumber].value;
			if ((quantity != "") & (quantity > 0)){
				detailParameters = "Mode=Add" + "&ItemID=" + pItemID + "&Quantity=" + quantity;
				//alert(detailParameters);
				document.location = "ShoppingCart.asp?" + detailParameters;
			}
			else
				alert("Please supply a quantity to add to the order!");
		}

		function goBack() {
		     //window.history.go(-2)
			window.history.back()
		}


		function newwindow(pUrl) 
		{ 
			window.open(pUrl,'ink','left=20,top=20,width=700,height=300,resizable=yes,scrollbars=yes'); 
		} 

		function update(){
			this.document.forms[0].submit();
		}

	
