// Aumentamos y disminuimos el texto
var txtSz = 0.7;
function textSize(signo)
{
	var cuerpo = document.getElementsByTagName("BODY")
	txtSz = (signo=="plus") ? txtSz+0.10 : txtSz-0.10;
	if (txtSz>1.1) txtSz = 1.1;
	if (txtSz<0.5) txtSz = 0.5;
	ts = txtSz+"em";
	cuerpo[0].style.fontSize = ts;
}

/* Abrir Ventana */
function abrirVentana(url,nombre,ancho,alto)
{
	eval("window.open(url, nombre, 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=no, scrollbars=yes, width="+ancho+", height="+alto+"')"); 
}
