function OpenGalerie(url,width,height) {
  var x = (screen.width - width) / 2;
  var y = (screen.height - height) / 2;
  parameter = "height="+ height +",width="+ width +",top="+ y +",left="+ x +",scrollbars=0,resizable=0,status=0,toolbar=0,location=0,directories=0,menubar=0";
  galerie = window.open(url, "galerie", parameter);
  galerie.focus();
}

function ResizeGalerie(url,width,height) {
  window.close();
  OpenGalerie(url,width,height);
}

function init() {
  if(parent != null && parent != self) {
    var host=parent.location.hostname;
      if(host != "www.perico-fantasy.de") {
        top.location.href=self.location.href;
      }
  }
}


