var sc_an=screen.width;
var sc_al=screen.height;

function abrePop(dir,ancho,alto,nombre_foto)	// POP DE LAS IMAGENES
{
	var x=(sc_an-ancho)/2;
	var y=(sc_al-alto)/2;
	dir=dir.replace('#','%23');
	dir=dir.replace('#','%23');
	dir=dir.replace('#','%23');
	dir=dir.replace('#','%23');
	t=window.open (dir,'img','width='+ancho+',height='+alto+',left='+x+',top='+y);
	t.document.write("<html><head><title>"+nombre_foto+"</title></head><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='"+dir+"'></body></html>");
	t.focus();
}

function MenuActive(id)
{
	document.getElementById(id).style.color='#F5595D';
	document.getElementById(id).style.backgroundColor='#F4E8E8';
	document.getElementById(id).style.paddingBottom='1px';
	document.getElementById(id).style.backgroundColor='';
//	document.getElementById(id).style.textDecoration='underline';
//	document.getElementById(id).style.backgroundImage='url(images/btn_down.jpg)';
	return;
}