<!--
	function element(nume) {
		return document.getElementById(nume);
	}
function validate(form) { 
    if (form.nume.value.length == 0) 
    { 
        alert("Va rugam sa introduceti numele.") 
        form.nume.focus() 
        return false 
    } 
    if (form.adresa.value.length == 0) 
    { 
        alert("Va rugam sa introduceti adresa.") 
        form.adresa.focus() 
        return false 
    } 
    if (form.telefon.value.length == 0) 
    { 
        alert("Va rugam sa introduceti telefon.") 
        form.telefon.focus() 
        return false 
    } 
    if (form.mail.value.indexOf("@") == -1) 
    { 
        alert("Va rugam sa introduceti o adresa valida de email."); 
        form.mail.focus(); 
        return false; 
    } 
    if (form.mesaj.value.length == 0) 
    { 
        alert("Va rugam sa introduceti mesajul.") 
        form.mesaj.focus() 
        return false 
    } 
} 
-->

