function display(a){
	document.getElementById("dp"+a).style.display = "block";
}
function pintaMenu(a){
	document.getElementById("m"+a).style.fontWeight = "bold";
	document.getElementById("m"+a).style.background = "url(images/bg_menu"+a+".gif) no-repeat";
}
function pintaYdisplay(a){
	pintaMenu(a);
	display(a);
}
function pintaSubmenu(a){
	document.getElementById("sm"+a).style.background = "url(images/cuadro_gris.gif) 0px 5px no-repeat";
}
function go(seccion){
	recuerdos.document.location = seccion;
}
function abre(a){
	if(document.all){var ventanaW=document.body.clientWidth;}
	else{var ventanaW=window.innerWidth}
	if(document.all){var ventanaH=document.body.clientHeight+150;}
	else{var ventanaH=window.innerHeight}
	var w = ventanaW/2;
	w = w-225;
	var h = ventanaH/2;
	h = h-175;
	window.open(a, 'textos', 'width=450, height=350, top='+h+',left='+w+', scrollbars=yes, location=0');
}