<!---Hide from old Browsers

function checkItem(form)
{
whatSize=form.itemsize.selectedIndex     //Was price selected?
whatBackground=form.thebackcolor.selectedIndex  //Was background color selected?

     if(form.itemsize.options[whatSize].value == "NoChoiceMade")  
        {
           alert("You must select a product size. Thank You.") 
           return false;
        }
        
             
     if(form.thebackcolor.options[whatBackground].value == "NoChoiceMade")
        {
           alert("You must select a color style. Thank You.");
           return false;
        }      
                            
     
     if (form.itemquant.value < "1")
     {
        alert("You must select a quantity of 1 item or more.  Thank you.");
        form.itemquant.focus();
        return false;

     }
      
          				
if((form.itemsize.options[whatSize].value != "NoChoiceMade") && (form.thebackcolor.options[whatBackground].value != "NoChoiceMade") &&
    (form.itemquant.value > "0")) 
    {
         if (form.flag.value == "flaps")
         {
         getpriceNFA2();
         return true;
         }
         else { getpriceNFNA2();
         return true;
         }
    }    
	
	       

} 
                                            

//End Hiding From Old Browsers-->

<!---Hide from old browsers
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;
		     	}
	}
//End hiding from old browsers-->      