<!--
	function screenShotWindow(id,sizeX,sizeY) {
		url = 'pages/screenshots/viewscreenshot.php?id='+ id +'&x='+sizeX+'&y='+sizeY;
		target = 'podScreenshots';
		other = 'directories=no,height='+ (sizeY+100) +',width='+ (sizeX+85) +',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,top=50,left=50';
		o = window.open(url,target,other,false);
		
		o.focus();
		return o;
	}
-->