function validate()
{
    if(document.frm2.email_contact.value == "")
    {
		alert('Va rog introduceti o adresa de email valida');
		return false;
    }
	
	if(document.frm2.telefon_contact.value == "")
    {
		alert('Va rog introduceti un numar de telefon valid');
		return false;
    }
return true;
}

function clearBack(id) {
	document.getElementById(id).style.backgroundImage = '';
}

