function showHide(){
	if(document.getElementById("form").style.display=="block")
	document.getElementById("form").style.display="none";
	else
	document.getElementById("form").style.display="block";
}
function backgroundPic(){
	document.getElementById("email").style.background="#ffffff";
}
function isEmail(id){
	if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.getElementById(id).value)){
		return (true);
	}
	else 
		return (false);
}
function submitForm(mailfrm){
	if(isEmail("email")){
		document.getElementById("mailForm").submit();
		return true;
	}
	else 
		alert("Va rugam sa introduceti o adresa de e-mail valida!");
}
function init(){
	document.getElementById("email").value="";
}