function externalLinks() 
{
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) 
	{
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}

function imgOver(nombre,objeto)
{
	
	
	if(objeto.src.indexOf('_sel.png')==-1)
		objeto.src = 'img/boton_'+nombre+'_over.png';
}

function imgOut(nombre,objeto)
{
	
	if(objeto.src.indexOf('_sel.png')==-1)
		objeto.src = 'img/boton_'+nombre+'.png';
}
function igualaAlto()
{
	var h = document.getElementById('menu').scrollHeight;
	document.getElementById('barra').style.height = h+'px';
}