	// ***************************************
	// **************************************
	// Name:
	//	OpenWindow
	// Purpose:
	//	This function takes given parameters and opens a new window.  Predifined
	//	windows such as help will use the parameters specified in the 
	//	window.open call.  Custom windows will have parameters sent for height
	//	and width, but new window types can certainly be added to get a custom
	//	window.
	// Input:
	//	strURL*			- The URL to display in new window.(required)
	//	winType			- The type of window to be opened. If none is specified
	//					  then a generic blank window is opened.
	//	winName			- The name of the window to open such as help.
	//	winWidth		- Number for width of window.
	//	winHeight		- Number for height of window.
	// Output:
	//	New window populated with specified URL.
	// Global Dependencies
	//	None
	// **************************************
	// **************************************
function OpenWindow(strURL,winType,winName,winWidth,winHeight)
{
	var objWindow
	var NS4 = (document.layers) ? 1 : 0;
	var szUserAgent = navigator.userAgent;
	szUserAgent = szUserAgent.toLowerCase();

	var AOL = (szUserAgent.indexOf("aol") > 0) ? 1: 0;


	switch(winType)
	{
		case "help":
			objWindow=window.open(strURL, 'zonehelp','scrollbars, resizable, width=620, height=420, top=0, left=0');
			break;
		case "custom":
			objWindow=window.open(strURL, winName, 'scrollbars, resizable, width=' + winWidth + ', height=' + winHeight + ', top=0, left=0');
			break;
		case "customcrippledwin":
			window.open(strURL, winName, 'width=' + winWidth + ', height=' + winHeight + ',top=60, left=100, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
			break;
		case "Edak":
			window.open(strURL, winName, 'width=' + winWidth + ', height=' + winHeight + ',top=60, left=120, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
			break;
		default:
			objWindow=window.open(strURL);
	}
}
