function checkform(){
	
	var strError;
	strError= '';
	
	if(document.getElementById('Name').value == '')
		strError = 'Please enter your name\n';
		
	if(document.getElementById('Email').value == '')
		strError = strError + 'Please enter your email address\n';
		
	if(document.getElementById('Company').value == '')
		strError = strError + 'Please enter your Company name\n';
		
	if(document.getElementById('Daytime').value == '')
		strError = strError + 'Please enter your Daytime Tel\n';
		
//	if(document.getElementById('Mobile').value == '')
//		strError = strError + 'Please enter your Mobile Number\n';

	if(document.getElementById('method_of_contact').value == '')
		strError = strError + 'Please choose your method of contact\n';
		
	if(document.getElementById('Enquiry').value == '')
		strError = strError + 'Please enter an Enquiry\n';
		
	if(strError.length > 0){
		alert(strError);
	}else{
		document.ContactForm.submit();
	}

}
function goProducts(sValue){
	var sValueSplit;
	sValueSplit = sValue.split("|");
	window.location.href='/products.asp?id='+sValueSplit[0]+'&Category='+sValueSplit[1];
}