function checkquick() {
	msg = "";

	// contact details
	if (document.frm.strawberries.value == "")  msg = msg + "- Full Name\n";
	if (!emailcheck(document.frm.banana.value)) msg = msg + "- A valid email address\n";
	if (document.frm.carrot.value == "")  msg = msg + "- Country\n";
	

	// display the form check	
	if (msg!="")
		{
		alert ("Please complete the following:\r\n\r\n"+msg);
		return false;
		}
}

