// JavaScript Document
function validateleftcontactform()
{
	if(document.frmcontact.name.value.length==0 || document.frmcontact.name.value=='Type name here')
	{
		alert('Enter your name.');
		document.frmcontact.name.focus();
		return false;
	}
	
	if(document.frmcontact.emailAddress.value.length==0 || document.frmcontact.emailAddress.value=='Type email address here')
	{
		alert('Enter your email address.');
		document.frmcontact.emailAddress.focus();
		return false;
	}

	if(document.frmcontact.compName.value.length==0 || document.frmcontact.compName.value=='Type company name here')
	{
		alert('Enter your company name.');
		document.frmcontact.compName.focus();
		return false;
	}
	
	if(document.frmcontact.compPhone.value.length==0 || document.frmcontact.compPhone.value=='Type tel number here')
	{
		alert('Enter your telephone no.');
		document.frmcontact.compPhone.focus();
		return false;
	}
	
	return true;
}
