function validar_pedido(){
	if (!document.pedido.CIF.value)        
	{          
		alert ("Por favor, introduzca su CIF .");
		document.pedido.CIF.select();
		return false;        
	}
    
	if (!document.pedido.NOMBRE.value)        
	{          
		alert ("Por favor, introduzca su nombre .");
		document.pedido.NOMBRE.select();
		return false;        
	}
	
	if (!document.pedido.DIRECCION.value)        
	{          
		alert ("Por favor, introduzca su direccion .");
		document.pedido.DIRECCION.select();
		return false;        
	}
	
	if (!document.pedido.POBLACION.value)        
	{          
		alert ("Por favor, introduzca su poblacion .");
		document.pedido.POBLACION.select();
		return false;        
	}
	if (!document.pedido.CODIGO_POSTAL.value)        
	{          
		alert ("Por favor, introduzca su codigo postal .");
		document.pedido.CODIGO_POSTAL.select();
		return false;        
	}	
	
    if (!document.pedido.PROVINCIA.selectedIndex){
		alert ("Por favor, seleccione una provincia .");
		document.pedido.PROVINCIA.focus();
		return false;                   
    }			
	
	if (document.pedido.EMAIL.value)        
	{ 	
		if (document.pedido.EMAIL.value.indexOf("@",1)==-1)        
		{          
			alert ("Por favor, introduzca una direcci\xf3n E-Mail correcta.");
			document.pedido.EMAIL.select();
			return false;        
		}        
		if (document.pedido.EMAIL.value.indexOf(".",1)==-1)
		{          
			alert ("Por favor, introduzca una direcci\xf3n E-Mail correcta.");
			document.pedido.EMAIL.select();
			return false;        
		}	
	}
	
}

	function expandir_formulario(objeto){		
		 if (objeto.checked){
			xDisplay('capaexpansion', 'block')
		 }else{
			xDisplay('capaexpansion', 'none')
		 }
	}