function validateLoginForm() {

	if ($("input[@name=email]").val() == ''){
		alert("Please Enter an Email.");
		return  false;
	}
	if ($("input[@name=Password]").val() == ''){
		alert("Please Enter a Password.");
		return  false;
	}

	return true;
}

function sendPass(){
	if($("input[@name=email]").val() == ''){
		alert("Please Enter an Email.");
	}
	else{
		window.location = "http://www.123signup.com/servlet/RequestPassword?email="+ $("input[@name=email]").val() +"&org_id=tagonline";	
	}
}

function clearSearch(el){
	if(el.value == 'search terms'){
		el.value = '';	
	}
	
}