<!---Hide from old Browsers

function checkItem(form)
{
                       
     
     if (form.itemquant.value < "1")
     {
        alert("You must select a quantity of 1 item or more.  Thank you.");
        form.itemquant.focus();
        return false;

     }



}


function warn(form)
	{
		var decide = confirm("Have you finished shopping at The Hat Lady Store? If you have finished, then thank you for ordering from The Hat Lady. See you at the check-out.")
		     if ((decide == "0") || (decide == "false"))
		     	{
		     	 return false;
		     	}
		     	else{
		     	return true;
		     	}
	}

function getPriceDH()
{	
	CatC = "10.00"
	
	          
	              document.addit_11.itemprice.value = CatC;
	              total = document.addit_11.itemprice.value * document.addit_11.itemquant.value;
	              warnDH();
	             	           
}

function warnDH(form)
	{
		 var accept = confirm("Net price is $" + total +  "  for " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.value + ". Do you wish to make this purchase?");
			if ((accept == "0") || (accept == "false"))
			   	{
			 	 return false;
			    	}
			     	else{ return true;}
	}	
	
//End hiding from old browsers-->      
