<!--Hide from old browsers
function getpriceNFA()
{	
	itemprice = "00.00"
	var CatA = "22.00"
	var CatB = "25.00"
	var CatC = "10.00"
	var CatD = "25.00"
	var CatE = "25.00"
	var CatF = "15.00"	

	
	
	whatColor=document.addit_11.thecolor.selectedIndex                 //What item selected FOR EARFLAPS, HATS WITHOUT ANGORA, MULTICOLORS?
	whatSize=document.addit_11.itemsize.selectedIndex 
	whatBackground=document.addit_11.thebackcolor.selectedIndex 
	      if ((document.addit_11.itemsize.selectedIndex == 1) || (document.addit_11.itemsize.selectedIndex == 2))
	          {
	          document.addit_11.itemprice.value = CatB;
		  document.addit_11.itemname.value = (document.addit_11.itemsize.options[whatSize].value + " " + document.addit_11.thecolor.options[whatColor].value + " as the accent color, and " + document.addit_11.thebackcolor.options[whatBackground].value + " as the background color.");
		  alert("Price is $" + document.addit_11.itemprice.value + " each for this item.")
		  sendorder = "You are ordering " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.value + " Is that correct?";
			  if(! confirm(sendorder))
			      {
				 document.addit_11.itemsize.options[whatSize].value = "NoChoiceMade";
				 document.addit_11.thecolor.options[whatColor].value = "NoChoiceMade";
				 document.addit_11.thebackcolor.options[whatBackground].value = "NoChoiceMade";
				 document.addit_11.cancel.click();
				 autoReload();
			       }  	                     
	                      else { }
	              
	          }
	              
	       else if ((document.addit_11.itemsize.selectedIndex == 1) && (document.addit_11.itemsize.selectedIndex == 2))
	          {
	          document.addit_11.itemprice.value = CatB;
		  document.addit_11.itemname.value = (document.addit_11.itemsize.options[whatSize].value + " " + document.addit_11.thecolor.options[whatColor].value + " as the accent color, and " + document.addit_11.thebackcolor.options[whatBackground].value + " as the background color.");
		  alert("Price is $" + document.addit_11.itemprice.value + " each for this item.")
		  sendorder = "You are ordering " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.value + " Is that correct?";
			  if(! confirm(sendorder))
			      {
				 document.addit_11.itemsize.options[whatSize].value = "NoChoiceMade";
				 document.addit_11.thecolor.options[whatColor].value = "NoChoiceMade";
				 document.addit_11.thebackcolor.options[whatBackground].value = "NoChoiceMade";
				 document.addit_11.cancel.click();
				 autoReload();
			       }  	                     
	                      else { }
	              
	          }
	       else if ((document.addit_11.itemsize.selectedIndex == 3) || (document.addit_11.itemsize.selectedIndex == 4) ||
	                (document.addit_11.itemsize.selectedIndex == 5) || (document.addit_11.itemsize.selectedIndex == 6))
	              {
	                  document.addit_11.itemprice.value = CatB;
			  document.addit_11.itemname.value = (document.addit_11.itemsize.options[whatSize].value + " " + document.addit_11.thecolor.options[whatColor].value + " as the accent color, and " + document.addit_11.thebackcolor.options[whatBackground].value + " as the background color.");
			  alert("Price is $" + document.addit_11.itemprice.value + " each for this item.")
			  sendorder = "You are ordering " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.value + " Is that correct?";
				  if(! confirm(sendorder))
				      {
					 document.addit_11.itemsize.options[whatSize].value = "NoChoiceMade";
					 document.addit_11.thecolor.options[whatColor].value = "NoChoiceMade";
					 document.addit_11.thebackcolor.options[whatBackground].value = "NoChoiceMade";
					 document.addit_11.cancel.click();
					 autoReload();
				       }  	                     
	                      else { }
	           }
	        else if ((document.addit_11.itemsize.selectedIndex == 3) || (document.addit_11.itemsize.selectedIndex == 4) ||
		  	 (document.addit_11.itemsize.selectedIndex == 5) || (document.addit_11.itemsize.selectedIndex == 6))
	                {
	                  document.addit_11.itemprice.value = CatB;
			  document.addit_11.itemname.value = (document.addit_11.itemsize.options[whatSize].value + " " + document.addit_11.thecolor.options[whatColor].value + " as the accent color, and " + document.addit_11.thebackcolor.options[whatBackground].value + " as the background color.");
			  alert("Price is $" + document.addit_11.itemprice.value + " each for this item.")
			  sendorder = "You are ordering " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.value + " Is that correct?";
				  if(! confirm(sendorder))
				      {
					 document.addit_11.itemsize.options[whatSize].value = "NoChoiceMade";
					 document.addit_11.thecolor.options[whatColor].value = "NoChoiceMade";
					 document.addit_11.thebackcolor.options[whatBackground].value = "NoChoiceMade";
					 document.addit_11.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-->		
