function OpenWindow(strFileName, intWidth, intHeight)
	{
		//
		objWin = window.open(strFileName, "sub_window", "scrollbars=no,resizable=no,toolbar=no,menubar=yes,width=" + intWidth + ",height=" + intHeight + " ");
		window.objWin.focus();
	return true;
	}