<!--

function CheckForm()
{


if (document.forms[0].nume.value == "")
 { alert("Va rugam completati campul 'nume'.");
   document.forms[0].nume.focus();
   return false;}
   
if (document.forms[0].telefon.value == "")
 { alert("Va rugam completati campul 'telefon'.");
   document.forms[0].telefon.focus();
   return false;}

if (document.forms[0].mesaj.value == "")
 { alert("Va rugam completati campul 'mesaj'.");
   document.forms[0].mesaj.focus();
   return false;}

return true;

}

function CheckFormEng()
{

if (document.forms[0].nume.value == "")
 { alert("Please insert your name.");
   document.forms[0].nume.focus();
   return false;}

if (document.forms[0].email.value == "")
 { alert("Please insert your e-mail.");
   document.forms[0].email.focus();
   return false;}

if (document.forms[0].mesaj.value == "")
 { alert("Please insert your message.");
   document.forms[0].mesaj.focus();
   return false;}

return true;

}

// -->

