// JavaScript Document

var checkPolitica;
var boton;

// JavaScript Document

function politicaPrivacidad(){


boton = document.getElementById("btnGuardar");
checkPolitica = document.getElementById("checkPolPrivacidad");

if(checkPolitica.checked){politicaPrivacidadAct()}
else{politicaPrivacidadInAct()}
}

var ie=(document.all && document.getElementById);
var ns = (!document.all && document.getElementById);

function politicaPrivacidadAct(){

	boton.disabled=false;
	boton.className="btnEnvSolicitudOn"; 
	//if(ie) boton.style.cursor = "pointer";
	//if(ns) boton.setAttribute("style", "cursor:pointer"); 	
}
function politicaPrivacidadInAct(){

	boton.disabled=true;
	boton.className="btnEnvSolicitudOff"; 
	//if(ie) boton.style.cursor = "not-allowed";
	//if(ns) boton.setAttribute("style", "cursor:not-allowed"); 	
}

function preloadFormulario(){
	var obj = document.getElementById("lblMensajeConfirmacion")
	if(obj.innerText==""){
		obj.innerHTML="<img src='../imagenes/comun/ajax-loader.gif' alt='cargando....' /><strong>Cargando...</strong>";
	}
}
