function verifica() {
var mesaj = "Completati va rog campul: ";
if (document.form.nume.value=="") {
mesaj = mesaj + " - Nume";
}

if (document.form.telefon.value=="") {
mesaj = mesaj + " -  Telefon";
}
//alert if fields are empty and cancel form submit
if (mesaj == "Completati va rog campul: ") {
document.form.submit();
}
else {
alert(mesaj);
return false;
   }
}

function configurator(){
window.open('http://www.gealan.ro/06Joc_functional/GEALANconfigurator.html','','width=640,height=480');
}