// JavaScript Document
function openWindow(url)
{
	Window = window.open(url, url, "width=850,height=700,dependent=yes,resizable=yes,scrollbars=yes,screenX=0,screenY=50");
	Window.focus();
}
