function wPop(url, winName, wWidth, wHeight, scrll)
	{
		var scrollB;
		if(!scrll)
		{
			scrollB = 'no';
			var pWidth = wWidth;
			var rSize = 'no';
		}
		else 
		{
			scrollB = scrll;
			wWidth = parseInt(wWidth) + 20;
			var rSize = 'yes'
		}
		var iMyWidth;
		var iMyHeight;
		wHeight = wHeight + 12;
		//Added twelve pixels to ALL popup heights to compensate for newer/larger popup header logo. 
		iMyWidth =(window.screen.width / 2) - (wWidth / 2 + 10);
		//half the screen width minus half the new window width (plus 5 pixel borders).
		iMyHeight =(window.screen.height /2) - (wHeight / 2 + 15);
		//half the screen height minus half the new window height (plus title and status bars).
		var zWin = window.open(url, winName, "status=no,width=" + wWidth + ",height=" + wHeight + ",resizable=" + rSize + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=" + scrollB);
		zWin.focus();
	}
