var ventanas = {
	init: function ()
	{
	},
	
	abrirVentana: function (url, ventana, anchura, altura)
	{
		//Obtenemos valores Top y Left para centrar la ventana en la pantalla	
		LeftPosition = (screen.width) ? (screen.width-anchura) / 2 : 0;
		TopPosition = (screen.height) ? (screen.height-altura) / 2 : 0;
		
		//Cadena con la configuración de la ventana
		opciones="height="+altura+",width="+anchura+",top="+TopPosition+",left="+LeftPosition;
		opciones=opciones+",scrollbars=no,resizable=no,alwaysRaised=yes,status=no,toolbar=no";   
	
		//Mostramos la nueva ventana
		win = window.open(url, ventana, opciones);
	
		//Si no tiene el foco se lo ponemos
		if (win.window.focus) {
			win.window.focus();
		}
	},
	
	abrirVentanaConScroll: function (url, ventana, anchura, altura)
	{
		//Obtenemos valores Top y Left para centrar la ventana en la pantalla	
		LeftPosition = (screen.width) ? (screen.width-anchura) / 2 : 0;
		TopPosition = (screen.height) ? (screen.height-altura) / 2 : 0;
		
		//Cadena con la configuración de la ventana
		opciones="height="+altura+",width="+anchura+",top="+TopPosition+",left="+LeftPosition;
		opciones=opciones+",scrollbars=yes,resizable=no,alwaysRaised=yes,status=no,toolbar=no";   
	
		//Mostramos la nueva ventana
		win = window.open(url, ventana, opciones);
	
		//Si no tiene el foco se lo ponemos
		if (win.window.focus) {
			win.window.focus();
		}
	}
}