// JavaScript Document


var abierta=0;

function ventana(destino,ancho,alto,nombre) {
	if (abierta) { ventanica.close(); };
	ventanica=window.open(destino, nombre, 'width='+ancho+',height='+alto+',top=115,left=80');
	abierta=1;
}

function ventanascroll(destino,ancho,alto,nombre) {
	if (abierta) { ventanica.close(); };
	ventanica=window.open(destino, nombre, 'width='+ancho+',height='+alto+',top=115,left=80,scrollbars=yes');
	abierta=1;
}
