// JavaScript Document
function OpenWindow (URL, WinName, width, height) { 
	var Features = "width=" + width;
	Features = Features + ",height="+ height;
	Features = Features + ",left=0,top=0,screenX=0,screenY=0,resizable=no,status=no,toolbar=no,menubar=no,scrollbars=no";
	window.open(URL, WinName, Features);
	}