<!---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 Heart Dancing / Apres? 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-->      
