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);
		return false;
	}else{
		return true;
	}

}
function checkform_callback(){
	
	var strError
	strError= ''
	
	if(document.getElementById('Name').value == '')
		strError = 'Please enter your name\n';
				
	if(document.getElementById('Number').value == '')
		strError = strError + 'Please enter your Number\n';

	if(document.getElementById('best_time_to_call').value == '')
		strError = strError + 'Please select the best time to call\n';
		
	if(strError.length > 0){
		alert(strError);
	}else{
		document.ContactForm.submit();
	}

}
function load() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(53.090364,-2.327557), 13);
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
	var point = new GLatLng(53.084,-2.3315);
	map.addOverlay(new GMarker(point));

  }
}
function killFreeShizzle(){
	if(document.getElementById('VolusionLiveChat')) {
		document.getElementById('VolusionLiveChat').innerHTML = document.getElementById('VolusionLiveChat').innerHTML.replace('FREE chat by Volusion', '');
	}
}

