﻿// JScript File




	
	function OpenWindow( sURL, iHeight, iWidth, blnResizeable )
	{
		//center window position
		var ScreenX = (screen.availWidth - iWidth)/2;
		var ScreenY = (screen.availHeight - iHeight)/2;

		var	objRet = window.open( sURL, '_blank', 'height=' + iHeight + ',width=' + iWidth + ',left=' + ScreenX + ',top=' + ScreenY + ',location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=' + (blnResizeable ? 'yes' : 'no'), true );
		objRet.focus();
		return objRet;
	}
	
	
	
