function openWindow(url, top, left, width, height) {
	window.open(url, "Window", "toolbar=0,status=0,location=no,menubar=no,directories=no,scrollbars=yes,resizable=no,screenX=0,screenY=0,left=" + left + ",top=" + top + ",width=" + width + ",height=" + height);
	window.focus();
}