// JavaScript Document
// MAXIMIZA LA VENTANA

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;
}
}
function openpage(theUrl,W,H){
    var theWin ="'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+W+",height="+H+"'"
	littleWin = window.open(theUrl,'opened',theWin);
	littleWin.resizeTo(W+10,H+29);
 	littleWin.focus();
}


