// JavaScript Document
function validar_form ()
{
ok=true
if (document.form1.cliente.value =='')
   {
    ok = false
	window.alert ('Debe de rellenar el campo CLIENTE');
	document.form1.cliente.focus();
   }

if ((ok == true) && (document.form1.contacto.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo CONTACTO');
	document.form1.contacto.focus();
   }

if ((ok == true) && (document.form1.cif.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo CIF / DNI');
	document.form1.cif.focus();
   }
if ((ok == true) && (document.form1.direccion.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo DIRECCION');
	document.form1.direccion.focus();
   }

if ((ok == true) && (document.form1.cp.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el CÓDIGO POSTAL');
	document.form1.cp.focus();
   }

if ((ok == true) && (document.form1.poblacion.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo POBLACIÓN');
	document.form1.poblacion.focus();
   }

if ((ok == true) && (document.form1.provincia.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo PROVINCIA');
	document.form1.provincia.focus();
   }
if ((ok == true) && (document.form1.email.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo EMAIL');
	document.form1.email.focus();
   } 
if ((ok == true) && (document.form1.telefono.value ==''))
   {
    ok = false
	window.alert ('Debe de rellenar el campo TELEFONO');
	document.form1.telefono.focus();
   } 
if ((ok == true) && ((document.form1.n_personalizados.value =='') || (document.form1.n_sin_personalizar.value =='')))
   {
    ok = false
	window.alert ('Debe de rellenar el NÚMERO DE EJEMPLARES');
	document.form1.n_personalizados.focus();
   }

if (ok == true)
	{
	  document.form1.submit()	
	}
}