/*
	Modified:	09/07/2008
	Function:	Display the recommend form
*/

function submitRecommend(frm){
	if(isNull(frm.sName.value)){
		alert("Please enter your Name");
		frm.sName.focus();
		return false;
	}
	
	if(!checkEmail(frm.sEmail.value)){
		alert("Please enter valid Email");
		frm.sEmail.focus();
		return false;
	}
	
	if(isNull(frm.iAge.value)||0==frm.iAge.value){
		alert("Please select your Age Range");
		frm.iAge.focus();
		return false;
	}
	
	if(isNull(frm.sLocation.value)){
		alert("Please enter your location");
		frm.sLocation.focus();
		return false;
	}
	
	if(isNull(frm.sWebsite.value)){
		alert("Please enter the name of the shop/website you like");
		frm.sWebsite.focus();
		return false;
	}
	
	if(isNull(frm.sComments.value)){
		alert("Please enter information about why you like the shop/website");
		frm.sComments.focus();
		return false;
	}

	return true;
}