function popUp(URL,x,y,left,top)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+ x +',height='+ y +',left ='+ left +',top = '+ top +'');");
}
function check_exp ( form )
{
  if (document.getElementById('sel').value==0)
     {
           alert("Va rugam selectati metoda de expediere!");
           return false ;
     }
}
function checkform_comanda( form )
{
  if (form.nume.value=="")
     {
           alert("Introduceti numele sau compania!");
           form.nume.focus();
           return false ;
     }
  if (form.nume.value.split(' ').length==1)
     {
           alert("Introduceti numele complet(nume si prenume) sau daca e companie, introduceti sub forma SC Denumire...!");
           form.nume.focus();
           return false ;
     }
     
  if (form.codf.value=="")
     {
           alert("Introduceti CNP sau CIF!");
           form.codf.focus();
           return false ;
     }
  if (form.email1.value=="")
     {
           alert("Introduceti adresa de email!");
           form.email1.focus();
           return false ;
     }
  if (form.email1.value.split('@').length==1 || form.email1.value.split('.').length==1)
     {
           alert("Introduceti o adresa de e-mail valida!");
           form.email1.focus();
           return false ;
     }
  if (form.loc.value=="")
     {
           alert("Introduceti localitatea!");
           form.loc.focus();
           return false ;
     }
}    