
function xoopsFormValidate_formular_comandaform() {
	myform = window.document.formular_comandaform;
if ( myform.nume.value == "" ) { window.alert("Te rog completeaza numele"); myform.nume.focus(); return false; }
if ( myform.email.value == "" ) { window.alert("Te rog completeaza adresa de e-mail"); myform.email.focus(); return false; }
if ( myform.telefon.value == "" ) { window.alert("Te rog completeaza numarul de telefon"); myform.telefon.focus(); return false; }
if ( myform.firma.value == "" ) { window.alert("Nu ai scris nimic in mesaj"); myform.firma.focus(); return false; }
return true;
}