// JavaScript Document
// rollovers de botones
function rolloverOn(cual,id)
{
	if(typeof id == "undefined")
	{
		eval("document.getElementById('td"+cual+"').bgColor = '#F9E7EF'");
		eval("document.getElementById('"+cual+"_izq').src = '../images/bot_izq_on.gif'");
		eval("document.getElementById('"+cual+"_dcha').src = '../images/bot_dcha_on.gif'");
	}
	else
	{
		eval("document.getElementById('td"+cual+id+"').bgColor = '#F9E7EF'");
		eval("document.getElementById('"+cual+id+"_izq').src = '../images/bot_izq_on.gif'");
		eval("document.getElementById('"+cual+id+"_dcha').src = '../images/bot_dcha_on.gif'");
	}
}		
function rolloverOff(cual,id)
{
	if(typeof id == "undefined")
	{
		eval("document.getElementById('td"+cual+"').bgColor = '#E7F2F9'");
		eval("document.getElementById('"+cual+"_izq').src = '../images/bot_izq.gif'");
		eval("document.getElementById('"+cual+"_dcha').src = '../images/bot_dcha.gif'");				
	}
	else
	{
		eval("document.getElementById('td"+cual+id+"').bgColor = '#E7F2F9'");
		eval("document.getElementById('"+cual+id+"_izq').src = '../images/bot_izq.gif'");
		eval("document.getElementById('"+cual+id+"_dcha').src = '../images/bot_dcha.gif'");				
	}
}
// rollovers de bullet al lado de textos
function rollover_bulletOn(cual,id)
{
	if(typeof id == "undefined")
	{
		eval("document.getElementById('"+cual+"_bull').className = 'a_96004B_11'");		
	}
	else
	{
		eval("document.getElementById('"+cual+id+"_bull').className = 'a_96004B_11'");		
	}
}		
function rollover_bulletOff(cual,id)
{
	if(typeof id == "undefined")
	{
		eval("document.getElementById('"+cual+"_bull').className = 'a_6BBDF1_11'");					
	}
	else
	{
		eval("document.getElementById('"+cual+id+"_bull').className = 'a_6BBDF1_11'");						
	}
}

function Flecha(cual,como)
{
	if(como)
		eval("document.getElementById('fle"+cual+"').src = '../images/fle_rol.gif'");
	else
		eval("document.getElementById('fle"+cual+"').src = '../images/fle_men.gif'");
}

// apertura de flotante
var winn;
function abrir(cual,wid,heig,scrol){	
	var LeftP = (screen.width) ? (screen.width-wid)/2 : 0;
	var TopP = (screen.height) ? (screen.height-heig)/2 : 0;
	if(screen.width == 800 || screen.height == 600) scrol = 'yes';
	if(winn){
		if(!winn.closed) winn.close();
		winn = null;
	}
	window.focus();
	winn=eval("open('"+cual+"','','width="+wid+",height="+heig+",top="+TopP+",left="+LeftP+",scrollbars="+scrol+",resizable=yes')");
}


function Ampliar(ruta)
{
	ruta="ampliar.asp?ruta=" + ruta ;
	window.open(ruta,"","top=10,left=10,width=451,height=334,scrollbars=0,toolbars=0")
}

function abre_para_impresion()
{
	var w = window.open("imprimir.asp","","height=1,width=1,left=50000,top=0")
}

// obtenemos la altura de la capa que contiene los idiomas				
function dameAltura()
{
	altura = document.getElementById("idiomas").offsetHeight;			
}

// funcin de cambio de idioma

function changeLang(cual)
{
	
	var lang = cual.split('|')[1];
	var ruta = document.location.href;
	
	if(ruta.indexOf("/es/")!=-1)
	{
		raiz_web=ruta.split("/es/")[0] ;
		sobrante=ruta.split("/es/")[1] ;
	}
	if(ruta.indexOf("/de/")!=-1)
	{
		raiz_web=ruta.split("/de/")[0] ;
		sobrante=ruta.split("/de/")[1] ;
	}
	if(ruta.indexOf("/en/")!=-1)
	{
		raiz_web=ruta.split("/en/")[0] ;
		sobrante=ruta.split("/en/")[1] ;
	}
	if(ruta.indexOf("/fr/")!=-1)
	{
		raiz_web=ruta.split("/fr/")[0] ;
		sobrante=ruta.split("/fr/")[1] ;
	}
	if(ruta.indexOf("/it/")!=-1)
	{
		raiz_web=ruta.split("/it/")[0] ;
		sobrante=ruta.split("/it/")[1] ;
	}
	ruta_final = raiz_web + "/" + lang + "/" + sobrante
	//alert(ruta_final)
	document.location.href = ruta_final;
}