		function windowPopup(gameTitle, navGroup, screenshot)
	    {
			/* popupLink is relative to the page that the script is called from not this file */
			var popupLink = '../../../ss-pop-up.php';
			var popupPath = (popupLink + "?title=" + gameTitle + "&navGroup="  + navGroup + "&screenshot="  + screenshot);
		    newWindow = window.open(popupPath, "pop", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=438,height=334,left=20,top=20");
			newWindow.focus();
		    return;
	    }
