function openPictureWindow_Fever(imageName,alt) {
        newWindow = window.open("","okno","width=20,height=20,left=50,top=50");
        newWindow.document.open();
        newWindow.document.write('<html><title>'+alt+'</title>');
        newWindow.document.write('<script TYPE="text/javascript">');
        newWindow.document.write('function dopasuj() {szer = document.fotografia.width;wys = document.fotografia.height;top.window.resizeTo(szer+20,wys+40);}');
        newWindow.document.write('</script>');        
        newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onClick="window.close()" onBlur="self.close()" onLoad="dopasuj();">'); 
        newWindow.document.write('<img src='+imageName+' name="fotografia" alt='+alt+'>'); 
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
}


function openGame() {
	
	var popUp = window.open('../dodatki/gra/index.html', 'gra', 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width=682,height=560,top='+((screen.availHeight/2)-(682/2))+',left='+((screen.availWidth/2)-(560/2)));
	
	
	popUp.focus();
}
