
function ShowSizedWindow(strHref, intWidth, intHeight, boolResizable, boolFullScreen) 
	{
	var strFeatures = "";

		strFeatures =
			"width = "  + intWidth +
			", height = " + intHeight +
			", resizable = " + (boolResizable == true ? "1" : "0") +
			", fullscreen = " + (boolFullScreen == true ? "1" : "0")

		newwindow=window.open(strHref, "screen", strFeatures);
                if (window.focus) {newwindow.focus()}
                return false;
	}