<!--Hide from old browsers
function getPriceH()
{	
	itemprice = "00.00"
	var CatA = "18.00"
	var CatB = "19.50"
	var CatC = "15.00"
	var CatD = "22.00"
	var CatE = "24.00"
	var CatF = "13.00"
	

		
	whatItem=document.addit_11.itemname.selectedIndex     //What item selected FOR EARFLAPS?
	      if ((document.addit_11.itemname.selectedIndex == 1) ||
	          (document.addit_11.itemname.selectedIndex == 2) || 
	          (document.addit_11.itemname.selectedIndex == 3))
	          {
	              document.addit_11.itemprice.value = CatC;
	              total = document.addit_11.itemprice.value * document.addit_11.itemquant.value;
	              alert("Net price is $" + total +  "  for " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.options[whatItem].value + ". Please click on the appropriate 'Add To Cart' button if you wish to make this purchase.");
	              
	          }
	              
	          else {}	 
}

function getPriceHA()
{	
	itemprice = "00.00"
	var CatA = "18.00"
	var CatB = "19.50"
	var CatC = "15.00"
	var CatD = "22.00"
	var CatE = "24.00"
	var CatF = "13.00"
	

		
	whatItem=document.addit_11.itemname.selectedIndex     //What item selected FOR EARFLAPS?
	      if ((document.addit_11.itemname.selectedIndex == 1) ||
	          (document.addit_11.itemname.selectedIndex == 2) || 
	          (document.addit_11.itemname.selectedIndex == 3))
	          {
	              document.addit_11.itemprice.value = CatF;
	              total = document.addit_11.itemprice.value * document.addit_11.itemquant.value;
	              alert("Net price is $" + total +  "  for " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.options[whatItem].value + ". Please click on the appropriate 'Add To Cart' button if you wish to make this purchase.");
	              
	          }
	              
	          else {}	 
}

//End Hiding from old browsers-->		

