//LINKS PARA EL PIE DE PÁGINA
function openventana(url,x,y) {
		window.open(url,"name","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+x+",height="+y);
	}


//FUNCION PARA ABRIR POP-UPs
	function abre(pp)
	{
	window.open(pp, 'Boletines', 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=no, scrollbars=no, width=400, height=250'); 
	}

function inicio(num)
{
	colocarSubMenus(num);
}

function rollOverImg(imgId,imgSrc)
{
	imgSrc.src=imgId;
}

function mostrar(capa,estado)
{
	document.getElementById(capa).style.display = estado;
}


function colocarCapa(capa,x,y)
{
	var posicion = ((document.body.clientWidth-768)/2)+x;
	document.getElementById(capa).style.left = posicion;
	document.getElementById(capa).style.top = y;
}



