// JavaScript Document
//archivo para funciones de publicidad

function eplExpandLayer()
{
	var elem0=document.getElementById('publicidad_superior')
	elem0.style.zIndex=9999;
	elem0.style.height="300px";
	
}
function eplShrinkLayer()
{
	var elem0=document.getElementById('publicidad_superior')
	elem0.style.zIndex=5;
	elem0.style.height="90px";
	
}