<!--Hide from old browsers

function getpriceNFNA()
{
	
	itemprice = "00.00"
	var CatA = "25.00"
	var CatB = "25.00"
	var CatC = "10.00"
	var CatD = "25.00"
	var CatE = "25.00"
	var CatF = "15.00"	
	
	        
	 whatColor2=document.addit_12.thecolor.selectedIndex     //What item selected FOR EARFLAPS, HATS WITHOUT ANGORA, MULTICOLORS?
	 whatSize2=document.addit_12.itemsize.selectedIndex
	 whatBackground2=document.addit_12.thebackcolor.selectedIndex
	 	 
	 	  if ((document.addit_12.itemsize.selectedIndex == 1) || (document.addit_12.itemsize.selectedIndex == 2) ||
	 	      (document.addit_12.itemsize.selectedIndex == 3))
	 	     {
	 	          document.addit_12.itemprice.value = CatA;
	 	          document.addit_12.itemname.value = (document.addit_12.itemsize.options[whatSize2].value + " " + document.addit_12.thecolor.options[whatColor2].value + " as the accent color, and " + document.addit_12.thebackcolor.options[whatBackground2].value + " as the background color.");
	 	          alert("Price is $" + document.addit_12.itemprice.value + " each for this item.")
			  sendorder = "You are ordering " + document.addit_12.itemquant.value + " " + document.addit_12.itemname.value + " Is that correct?";
				  if(! confirm(sendorder))
				      {
					 document.addit_12.itemsize.options[whatSize2].value = "NoChoiceMade";
					 document.addit_12.thecolor.options[whatColor2].value = "NoChoiceMade";
					 document.addit_12.thebackcolor.options[whatBackground2].value = "NoChoiceMade";
					 document.addit_12.cancel.click();
					 autoReload();
				       }  	                     
	                      else { }
	 	              
	 	     }
	 	              
	 	else if ((document.addit_12.itemsize.selectedIndex == 1) || (document.addit_12.itemsize.selectedIndex == 2) ||
	 	         (document.addit_12.itemsize.selectedIndex == 3))
	 	     {
	 	          document.addit_12.itemprice.value = CatA;
			  document.addit_12.itemname.value = (document.addit_12.itemsize.options[whatSize2].value + " " + document.addit_12.thecolor.options[whatColor2].value + " as the accent color, and " + document.addit_12.thebackcolor.options[whatBackground2].value + " as the background color.");
			  alert("Price is $" + document.addit_12.itemprice.value + " each for this item.")
			  sendorder = "You are ordering " + document.addit_12.itemquant.value + " " + document.addit_12.itemname.value + " Is that correct?";
				  if(! confirm(sendorder))
				      {
					 document.addit_12.itemsize.options[whatSize2].value = "NoChoiceMade";
					 document.addit_12.thecolor.options[whatColor2].value = "NoChoiceMade";
					 document.addit_12.thebackcolor.options[whatBackground2].value = "NoChoiceMade";
					 document.addit_12.cancel.click();
					 autoReload();
				       }  	                     
	                      else { }
	 	              
	             }
	             
	         else {  }
	              
}	

function autoReload()
     {
        var timeID = setTimeout("location.href= document.URL", 2000)

              //The number is the time limit, it is using miliseconds (1/1000 of one second), so 60000 miliseconds = 60 seconds.
     }

			
//End Hiding from old browsers-->		
