function CheckFormContact(){
	hashpos = document.location.href.indexOf('#');
	if (hashpos == -1)
		document.location.href = document.location.href + '#';
	else
		document.location.href = document.location.href.substring(0, hashpos) + "#";
		
	with (document.formContact) {
		/*alte campuri*/	
		if (nume.value=="" || email.value=="" || subiect.value=="" || mesaj.value=="" || telef.value=="")
		{
			document.getElementById('erori').innerHTML = er_obligatorii;
			document.getElementById('erori').style.visibility="visible";
			return false;
		}
		
		if (!isEmail(email.value) )
		{
			document.getElementById('erori').innerHTML = er_email;
			document.getElementById('erori').style.visibility = "visible";
			return false;
		}
	}
	return true;
}
