function validateform(frm)
{
	
//	ABOUT YOU	
	if (frm.fullname.value=="")
	{	window.alert("Please enter your full name");
		frm.fullname.focus();
		return false;
	}

	if (frm.emailaddress.value=="")
	{	window.alert("Please enter your email address");
		frm.emailaddress.focus();
		return false;
	}

	if (!eMailcheck(frm.emailaddress.value) )
	{	window.alert("Please enter a valid email address");
		frm.emailaddress.focus();
		return false;
	}

	if ( (frm.telno.value=="") && (frm.mobno.value=="") )
	{	window.alert("Please enter a telephone / mobile number");
		frm.telno.focus();
		return false;
	}

	if ( (frm.fldStorageRequired.value=="Yes") && (frm.fldstoragehowlong.value=="") )
	{	window.alert("Please indicate how long you will need storage facilities for.");
		frm.fldstoragehowlong.focus();
		return false;
	}

	

//	ABOUT YOUR MOVE
	
	if (frm.fldFromCountry.value=="0")
	{	window.alert("Please select the country you are moving from");
		frm.fldFromCountry.focus();
		return false;
	}
	
	if ( (frm.fldFromCity.value=="") || (frm.fldFromCity.value=="Town/City") )
	{	window.alert("Please enter the town/city you are moving from");
		frm.fldFromCity.focus();
		return false;
	}	

	if (frm.fldToCountry.value=="0")
	{	window.alert("Please select the country you are moving to.");
		frm.fldToCountry.focus();
		return false;
	}
	
	if ( (frm.fldToCity.value=="") || (frm.fldToCity.value=="Town/City") )
	{	window.alert("Please enter the town/city you are moving to.");
		frm.fldToCity.focus();
		return false;
	}
	
	if (frm.fldMoveYear.value=="0")
	{	window.alert("Please select the year you are moving.");
		frm.fldMoveYear.focus();
		return false;
	}	
	
	if (frm.fldMoveMonth.value=="0")
	{	window.alert("Please select the month you are moving.");
		frm.fldMoveMonth.focus();
		return false;
	}	
	
	if (frm.fldStorageRequired.value=="0")
	{	window.alert("Please indicate if you will require storage.");
		frm.fldStorageRequired.focus();
		return false;
	}	
	
//	ABOUT YOUR REQUIREMENTS	

	if (frm.fldPropertyType.value=="0")
	{	window.alert("Please select your property type.");
		frm.fldPropertyType.focus();
		return false;
	}	

	if (frm.fldNoOfBedrooms.value=="0")	
	{	window.alert("Please select the number of bedrooms in your property.");
		frm.fldNoOfBedrooms.focus();
		return false;
	}	

	
		return true;
}