function checkLostPass() {
	with (document.formResetPass) {
		if (id.value == "" && cont.value == "") {
			document.getElementById('erori').innerHTML = er_incomplet;
			document.getElementById('erori').style.visibility = "visible";
			return false;
		}
		if (id.value != "" && cont.value != "") {
			document.getElementById('erori').innerHTML = er_amandoua;
			document.getElementById('erori').style.visibility = "visible";
			return false;
		}
	}
	
	document.getElementById('erori').className = 'verde';
	document.getElementById('erori').style.visibility = "visible";
	document.getElementById('erori').innerHTML = msg_ok_lostpass;
	return true;
}
