function valida_imagen(codigo){

	var validacion=0;
		
	if(vacio(f1.nombre.value)) 
    {
		document.f1.nombre.style.backgroundColor = "#F6DEEC";// color defecto  #f6c9dd resaltado d5006e
		document.f1.nombre.style.borderStyle = "solid";
		document.f1.nombre.style.borderColor = "#E57BAB";
		document.f1.nombre.style.borderWidth = "1px";
		$('errornombre').style.display='block';
		validacion=1;
    }
	
	if(document.f1.email.value.indexOf('@') == -1)
    {
		document.f1.email.style.backgroundColor = "#F6DEEC";// color defecto  #f6c9dd resaltado d5006e
		document.f1.email.style.borderStyle = "solid";
		document.f1.email.style.borderColor = "#E57BAB";
		document.f1.email.style.borderWidth = "1px";
		$('erroremail').style.display='block';
		validacion=1;
    }
	
	if(vacio(f1.asunto.value)) 
    {
        document.f1.asunto.style.backgroundColor = "#F6DEEC";// color defecto  #f6c9dd resaltado d5006e
		document.f1.asunto.style.borderStyle = "solid";
		document.f1.asunto.style.borderColor = "#E57BAB";
		document.f1.asunto.style.borderWidth = "1px";
		$('errorasunto').style.display='block';
		validacion=1;
    }
	
	if(vacio(f1.mensaje.value)) 
    {
        document.f1.mensaje.style.backgroundColor = "#F6DEEC";// color defecto  #f6c9dd resaltado d5006e
		document.f1.mensaje.style.borderStyle = "solid";
		document.f1.mensaje.style.borderColor = "#E57BAB";
		document.f1.mensaje.style.borderWidth = "1px";
		$('errormensaje').style.display='block';
		validacion=1;
    }
		
	if(document.getElementById('seccion').value == "nulo")
	{
		document.f1.seccion.style.backgroundColor = "#F6DEEC";// color defecto  #f6c9dd resaltado d5006e
		document.f1.seccion.style.borderStyle = "solid";
		document.f1.seccion.style.borderColor = "#E57BAB";
		document.f1.seccion.style.borderWidth = "1px";
		$('errorseccion').style.display='block';
		validacion=1;
	}
	
	codigo = document.getElementById('codigo').value
	imagen = document.getElementById('imagen').value
	
    if(codigo.toUpperCase() != imagen.toUpperCase())
	{
        document.f1.imagen.style.backgroundColor = "#F6DEEC";// color defecto  #f6c9dd resaltado d5006e
		document.f1.imagen.style.borderStyle = "solid";
		document.f1.imagen.style.borderColor = "#E57BAB";
		document.f1.imagen.style.borderWidth = "1px";
		$('errorimagen').style.display='block';
		validacion=1;
	}
	
	if(validacion==1)
		return false;
	else
		return true;
	
	
}