function bibliografia(enlace) {
	ven = open(enlace,"01_default","width=350,height=300,status=no,toolbar=no,menubar=no,scrollbars=yes");
	ven.focus();
}
function notas_cri(enlace) {
	ven = open(enlace,"02_default","width=350,height=250,status=no,toolbar=no,menubar=no,scrollbars=yes");
	ven.focus();
}
function nota_intro(enlace) {
	ven = open(enlace,"03_default","width=350,height=250,status=no,toolbar=no,menubar=no,scrollbars=yes");
	ven.focus();
}
function notas(enlace) {
	ven = open(enlace,"04_default","width=350,height=250,status=no,toolbar=no,menubar=no,scrollbars=yes");
	ven.focus();
}

function ampliar_02() {
	ven = open("biografica.htm","01_default","width=600,height=380,status=no,toolbar=no,menubar=no,scrollbars=no");
}

function ampliar(x,y,h,w,s) {

if (navigator.appName == 'Netscape') {
h = 20 + h;
w = 20 + w;
ven = open(x+"_ampliacion"+y+".htm","ampliacion","height="+h+",width="+w+",status=no,toolbar=no,menubar=no,resizable=no,scrollbars="+s);

} else {

ven = open(x+"_ampliacion"+y+".htm","ampliacion","height="+h+",width="+w+",status=no,toolbar=no,menubar=no,resizable=no,scrollbars="+s);

}
}

var a = new Date(); // esta variable almacena la fecha del sistema
var b = 0; // esta variable almacena el año de la fecha como un numeral
var x = 0; // esta variable es el año
var fecha = " "; //esta variable es el literal que se imprimirá en el documento
function obtenerFecha() {
	b = a.getYear();
	x = 1900+b;
	if (x <= 1999) {
		fecha = "1999.";
	} else {
		if (navigator.appName=="Netscape") {
			fecha = x+".";
		} else {
			fecha = b+".";
		}
	}
	return fecha;
}

