function ComputerWarning() {
	window.alert("Thank you for your enquiry, but we are unable to assist companies with less than 1 pc seats");
	return;
}

/* 
 * doesn't validate these feilds :
 * parent company,  procurement, procurement contact, suppliers, licence agreements
 */
function Validate()
{
	var comp = document.form1.pc.value;
	
	if ( comp <=1)
	{
		alert("Thank you for your enquiry, but we are unable to assist companies with less than 1 pc seats. Our apologies."); 
	}
	
	else if (!document.form1.Company.value)
		alert ("Please enter your company name");
	else if (!document.form1.ContactName.value)
		alert ("Please enter your contact name");
	else if (!document.form1.Phone.value)
		alert ("Please enter your phone number");
	else if (!document.form1.country.value)
		alert ("Please enter your country");
	else
	{
		form1.action="http://mailgate.server-mail.com/cgi-bin/mailgate" 
		form1.method="post"
		form1.submit();
	}

}

                 