// Maximizar Ventana por Nick Lowe (nicklowe@ukonline.co.uk)
/*
function resizear ()
{
	window.moveTo(0,0);
		if (document.all) 
		{
			top.window.resizeTo(screen.availWidth,screen.availHeight);
		}
		else if (document.layers||document.getElementById) 
		{
			if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
			{
				top.window.outerHeight = screen.availHeight;
				top.window.outerWidth = screen.availWidth;
			}
		}
}
window.onload = resizear;
*/

// Abrir Ventana 

function Abrir_ventana (pagina) {
var opciones="toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=550,height=400,top=,left=";
window.open(pagina,"",opciones);
}


// Volver

function Volver ()	{
	window.history.go(-1);
}

