<!---Hide from old Browsers

function checkItem(form)
{
whatColor=form.thecolor.selectedIndex    //Was accent color selected?
whatBackground=form.thebackcolor.selectedIndex  //Was background color selected?

             
     if(form.thecolor.options[whatColor].value == "NoChoiceMade")
        {
           alert("You must select an accent color. Thank You.");
           return false;
        }
        
     if(form.thebackcolor.options[whatBackground].value == "NoChoiceMade")
        {
           alert("You must select a background color. 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.thecolor.options[whatColor].value != "NoChoiceMade") && (form.thebackcolor.options[whatBackground].value != "NoChoiceMade") &&
    (form.itemquant.value > "0")) 
    {
         if (form.flag.value == "flaps")
         {
         getpriceNFA();
         return true;
         }
         else { getpriceNFNA();
         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-->      
