//	Open Project List or Map
//	************************
function OpenWindow(Output,QueryString)
	{
	
	//QueryString = encodeURI(QueryString);
	
	if(Output == "table.asp" || Output == "factsheet.asp")
		{
		WindowHeight = 500;
		WindowWidth = 800;
		}
	else
		{
		if(screen.width > 1024)
			{
			WindowHeight = 768;
			WindowWidth = 1024;
			}
		else
			{
			WindowHeight = screen.availHeight - (screen.Height - screen.availHeight);
			WindowWidth = screen.availWidth;
			}
		}
	// alert("WindowHeight: " + WindowHeight + "/n, availHeight: " + screen.availHeight + ", totalHeight: " + screen.Height);
	WindowPositionLeft = Math.abs(((screen.availWidth - (screen.Width - screen.availWidth)) - WindowWidth) / 2);
	WindowPositionTop = Math.abs(((screen.availHeight - (screen.Height - screen.availHeight)) - WindowHeight) / 2);
	WinResult = window.open(Output + QueryString,Output.replace(/.asp/,""),"width=" + WindowWidth + ",height=" + WindowHeight + ",left=" + WindowPositionLeft + ",top=" + WindowPositionTop + ",resizable=yes,scrollbars=yes,location=no,menubar=no");
	}