

function detectexist(obj){
return (typeof obj !="undefined");
}

function AbrirResume(page){
var ventana;
var popwidth = 565
var popheight = 350
	function getpos(){
		leftpos=(detectexist(window.screenLeft))? screenLeft+document.body.clientWidth/2-popwidth/2 : detectexist(window.screenX)? screenX+innerWidth/2-popwidth/2 : 0
		toppos=(detectexist(window.screenTop))? screenTop+document.body.clientHeight/2-popheight/2 : detectexist(window.screenY)? screenY+innerHeight/2-popheight/2 : 0
		toppos=screen.height/2-popheight/2 
		if (window.opera){
			leftpos-=screenLeft;
			toppos-=screenTop;
		}
	}

	getpos()
	var  winattributes = 'width='+popwidth+', height='+popheight+', scrollbars=yes, left='+leftpos+', top='+toppos;
	pagina = page + ".html"
	var propiedades="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=542,height=600,top=30,left=320";
	ventana=window.open(pagina,"nueva",winattributes);
	ventana.opener=self;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////
function CambiaIdioma(){
	var org_address, ilen, iubicacion, file
	org_address = window.location
	org_address = org_address.toString()
	ilen = org_address.length
	iubicacion = org_address.lastIndexOf("/")
	file = org_address.substr(iubicacion + 1, ilen-iubicacion)
	if (file.substr(0, 1) == "e"){
		file = file.substr(1, file.lenght)
		document.location.href = file}
	else {
		file = "e" + file
		document.location.href = file}
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////

function MouseOverDrillDown(oObjeto){
	oObjeto.style.cursor='hand';}

///////////////////////////////////////////////////////////////////////////////////////////////

function MouseOutDrillDown(oObjeto){
	oObjeto.style.cursor='hand';}
	
///////////////////////////////////////////////////////////////////////////////////////////////
