<!--
/*
var width = screen.width;
if(location.search.indexOf("&width") == -1) {
  location = location.href + "?&width=" + width;   // Die Bildschirmbreite ist nun für PHP in der Variablen $width verfügbar.
}
*/
var height = screen.height;
if(location.search.indexOf("&height") == -1) {
  location = location.href + "?&height=" + height;   // Die Bildschirmbreite ist nun für PHP in der Variablen $width verfügbar.
}
//-->

