/* copyright (c) 2009 - Patrick Kracht < patrick.kracht@gmail.com > : default functions and settings */

function BID( ID )
{
 if ( document.getElementById )
  return document.getElementById(ID);
 if ( document.layers )
  return document.layers[ID];
 if ( document.all )
  return document.all[ID];
 return null;
};

function popup_images()
{
  var width  = 300;
  var height = 600;
  var left   = 0;
  var top    = 0;
  if (screen.width > 1920)
  {
    width  = 1920;
    height = 1200;
    left   = Math.round((screen.width - width) / 2);
    top    = Math.round((screen.height - height) / 2);
  }
  var props = "toolbar=no,location=no,directories=no,status=no,";
  props += "menubar=no,scrollbars=yes,resizable=yes,fullscreen=no,";
  props += "left="+left+",top="+top+",width="+width+",height="+height+",";
  props += "screenX="+left+",screenY="+top+",innerWidth="+width+",innerHeight="+height;
  var site = window.open("./images.php","Bilder",props);
  site.focus();
}
