
//					Funciones de eventos			
//-----------------------------------------------------------




 
		  
function fotoWeb_Click(){
alert("entramos");
	document.location.href="index.asp?fuseaction=consultoria-e.consultoria-e_principal" 
}

function fotoDesMedida_Click(){
	document.location.href="index.asp?fuseaction=soluciones_ad-hoc.soluciones_ad-hoc_principal" 
}

function fotoConsultoria_Click(){
	document.location.href="index.asp?fuseaction=consultoria-e.consultoria-e_principal" 
}

function fotoSeguridad_Click(){
	document.location.href="index.asp?fuseaction=seguridad-e.seguridad-e_principal" 
}

function fotoGesEmpresarial_Click(){
	document.location.href="index.asp?fuseaction=gestion_empresarial.gestion_empresarial_principal" 
}

function fotoAyudaDecisiones_Click(){
	document.location.href="index.asp?fuseaction=soluciones_ad-hoc.desarrollo_medida" 
}

function AbrirVetanaRPS() { //abrir CentanaRPS
	//window.showModalDialog('dsp_RPS.asp','','dialogHeight:480px;dialogWidth:505px;help:no;status:0;');
	centrar('dsp_RPS.asp','RPS',370,505)
}

function AbrirVetanaEmpresaExito() { //abrir AbrirVetanaEmpresaExito
	centrarconscroll('dsp_empresa_exito.asp?pStrWindowParent=Navigator','EmpresaExito',440,755)
}
	

function centrar(url,titulo,height,width){

	var str = "height=" + height + ",innerHeight=" + height;

	str += ",width=" + width + ",innerWidth=" + width;

	
	var ah = screen.availHeight - 30; 
	
	var aw = screen.availWidth - 10; 

	var xc = (aw - width) / 2;

	var yc = (ah - height) / 2;

	str += ",left=" + xc + ",screenX=" + xc;

	str += ",top=" + yc + ",screenY=" + yc;         
	
	window.open(url,titulo,str);

 }

 function centrarconscroll(url,titulo,height,width){

   var str = "height=" + height + ",innerHeight=" + height;

   str += ",width=" + width + ",innerWidth=" + width;

    var ah = screen.availHeight - 30;

    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;

    var yc = (ah - height) / 2;

	str += ",left=" + xc + ",screenX=" + xc;

	str += ",top=" + yc + ",screenY=" + yc + ",scrollbars=yes,resizable=yes";
                     
	window.open(url,titulo,str);

 }

	function centrarconscrollXXX(url,titulo,height,width) {
		//var w = screen.availWidth;
		//var h = screen.availHeight;

		var w = width;
		var h = height;

		 if (!window.open(url,"INCWEB",'status=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0,width='+w+',height='+h)) {
			alert("Debe permitir las ventanas emergentes para este sitio web desde su navegador");
		 }
	}