function InitializePage(fnMaxWidth,fnMaxHeight,fnWidth,fnHeight,fnOSWidth,fnOSHeight) {
	if (document.all) {
		fnMaxWidth = document.body.clientWidth;
		fnMaxHeight = document.body.clientHeight;
		}
	else if (document.layers) {
		fnMaxWidth = top.window.innerWidth;
		fnMaxHeight = top.window.innerHeight;
		}
	fnOSWidth = Math.round((fnMaxWidth-fnWidth)/2);
	fnOSHeight = Math.round((fnMaxHeight-fnHeight)/2);
}

function InfoWin(fnContent,fnWidth,fnHeight,fnScroll) {
	//Set Defaults
	fnMaxWidth = 640;
	fnMaxHeight = 480;
	//InitializePage
	if (document.all) {
		fnMaxWidth = document.body.clientWidth;
		fnMaxHeight = document.body.clientHeight;
		}
	else if (document.layers) {
		fnMaxWidth = top.window.innerWidth;
		fnMaxHeight = top.window.innerHeight;
		}
	fnOSWidth = Math.round((fnMaxWidth-fnWidth)/2);
	fnOSHeight = Math.round((fnMaxHeight-fnHeight)/2);
	//Define Parameters
	params  = "";
	params += "toolbar=0,";
	params += "location=0,";
	params += "directories=0,";
	params += "status=0,";
	params += "menubar=0,";
	params += "scrollbars=" + fnScroll + ",";
	params += "resizable=0,";
	params += "width=" + fnWidth + ",";
	params += "height=" + fnHeight + ",";
	params += "left=" + fnOSWidth + ",";
	params += "top=" + fnOSHeight + "";
	InfoWinSm = window.open(fnContent,"InfoWinSm",params)
}