		function OpenNewWindow(strURL,intWidth,intHeight)
		{
			var intTop
			var intLeft
			
			intTop = Math.round((window.screen.availHeight - intHeight) / 2);
			intLeft = Math.round((window.screen.availWidth - intWidth) / 2);
			
			DispWin = window.open(strURL,'','toolbar=no,status=no,menubar=no,top=' + intTop +',left=' + intLeft +',width=' + intWidth + ',height=' + intHeight);
		}

