// JavaScript Document
function Abrir_ventana (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=365, height=370, top=80, left=220";
window.open(pagina,"",opciones);
}


function popup_testi (pagina) {
	ancho=470; // modificar aquí en ancho de nuestro pop-up
	alto=480; // modificar aquí en alto de nuestro pop-up
	barras='no'; // modificar aquí el scrollbar; los valores pueden ser: 'yes' o 'no'
	
	izquierda = (screen.width) ? (screen.width - ancho) / 2 : 100;
   	arriba = (screen.height) ? (screen.height - alto) / 2 : 100;
	opciones ='toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+ barras +',resizable=0,width=' + ancho + ',height=' + alto + ',left=' + izquierda + ',top=' + arriba + '';
	window.open(pagina,"nombre",opciones); // codigo optimizado por Jan
	}


function popup_casos (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=468, height=580, top=80, left=220";
window.open(pagina,"nombre",opciones);
}


function nueva_ventana(url, nombre, ancho, alto, barras) {
   	izquierda = (screen.width) ? (screen.width - ancho) / 2 : 100;
   	arriba = (screen.height) ? (screen.height - alto) / 2 : 100;
   	opciones = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + barras + ',resizable=0,width=' + ancho + ',height=' + alto + ',left=' + izquierda + ',top=' + arriba + '';
	window.open(url,nombre,opciones)
}