<!---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;

     }
          
   

} 
                                            
//End Hiding from old browsers-->



<!---Hide from old browsers
function warn(form)
	{
		var decide = confirm("Have you finished shopping at Carriage House Crafts & Collectibles? If you have finished, then thank you for ordering from us. See you at the check-out.")
		     if ((decide == "0") || (decide == "false"))
		     	{
		     	 return false;
		     	}
		     	else{
		     	return true;
		     	}
	}
//End hiding from old browsers-->      