function catalogueRequest(l)
{
  window.open('/catreqform.php?l='+l,'','location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,width=350,height=400');
}

function catalogueRequestConfirm(l)
{
  var frm=document.getElementById('formReqCat');

  if(frm.nome.value=='')
    {alert((l=='it')?'Completare il campo Nome':'Please fill the Name field');return false;}
  if(frm.cognome.value=='')
    {alert((l=='it')?'Completare il campo Cognome':'Please fill the Surname field');return false;}
  if(frm.azienda.value=='')
    {alert((l=='it')?'Completare il campo Azienda':'Please fill the Company field');return false;}
  if(frm.indirizzo.value=='')
    {alert((l=='it')?'Completare il campo Indirizzo':'Please fill the Address field');return false;}
  if(frm.citta.value=='')
    {alert((l=='it')?'Completare il campo Città':'Please fill the City field');return false;}
  if(frm.cap.value=='')
    {alert((l=='it')?'Completare il campo CAP':'Please fill the ZIP Code field');return false;}
  if(frm.stato.value=='')
    {alert((l=='it')?'Completare il campo Stato':'Please fill the Country field');return false;}
  if(frm.email.value=='')
    {alert((l=='it')?'Completare il campo e-mail':'Please fill the email field');return false;}
  if(frm.telefono.value=='')
    {alert((l=='it')?'Completare il campo Telefono':'Please fill the Phone field');return false;}
  frm.submit();
}
