// JavaScript Document
function openWindow(url){
	openWindow2(url, "window", 750, 700);
}

function openWindow780(url){
	openWindow2(url, "window", 781, 473);
}

function openWindow2(url, windowName, width, height){
	var izq = (screen.width - width) / 2;
	window.open(url, windowName, "width=" + width + ",height=" + height + ", top=5, left="+izq+" , status=no,scrollbars=yes,toolbar=no,menubar=no,location=no");
}
		
//Auto maximize window.
top.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;
		}
}
//FIN Auto maximize window.
