
/*var xy = navigator.appVersion;
xz = xy.substring(0,4);
*/
document.cookie = "ScreenWidth=" + screen.width
document.cookie = "ScreenHeight=" + screen.height


function popup(page,popupname,height,width) {
var topPosition = (screen.height - height) / 2;
var leftPosition = (screen.width - width) / 2;
var windowprops = "width=" + width + ",height=" + height + ",top=" + topPosition + ",left=" + leftPosition + ",location=no,menubar=no,toolbar=no,scrollbars=no,resizable=no,status=no";
newWindow = window.open(page,popupname,windowprops);
var im = new Image();
im.src = page;
newWindow.document.write('<html><head><title>Saules Rasa, Foto</title></head>');
newWindow.document.write('<body style="padding:0;margin:0;"><img onclick="window.close();" src="'+page+'" /></body></html>');
}