
var w = screen.width;
var h = screen.height;

if (document.styleSheets) {
  var nStyles = document.styleSheets.length;
  var k=0;
  if(w > 1228) k=1;
  for (var i=0;i<nStyles;i++) {
   if (i==k) document.styleSheets[i].disabled = false;
   else      document.styleSheets[i].disabled = true;
  }
 }

//document.location.href = '$_SERVER['PHP_SELF']?w='+w+'&h='+h;

function popupImage( selectionname , selection,titletext ) {
	var image = new Image();
	image.src=selection;
	var wid=image.width; wid=wid+20;
	var hei=image.height; hei=hei+200;
 Popup = window.open("", "PREVIEW", "toolbar=0,resize=0,status=0,menubar=0,scrollbars=0,width="+wid+",height="+hei);
 Popup.document.open();
 Popup.document.write("<html><title>"+titletext+"</title>");
 Popup.document.write("<body BGCOLOR=FFFFFF>");
 Popup.document.write("<form><center><h1>" + selectionname + "</h1><p align='center'><input type='button' value='Затвори' " + "onClick='window.close()'></p><hr>");
 Popup.document.write("<img hspace=0 vspace=0 " + "src='" + selection + "'>");
 Popup.document.write("<hr></form>");
 Popup.document.write("</center></body></html>");
 Popup.document.close();
}