//0708
//if(top==self) self.location.href="/"; 

function imode()
{var sub;  wx = 400; wy = 666; 
sub = window.open("../gaestebuch/","gbook","toolbar=0,locationbar=0,directories=0,status=0,menubar=0,personalbar=0,scrollbars=1,resizable=1,width=400,height=666"); 
sub.window.focus(); x = (screen.width-(screen.width/2) - wx/2 ); y = (screen.height-(screen.height/2) - wy/2 ); 
sub.window.moveTo(x,y);
}


var scrj = 1;
function softScrollBack() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      var scdist = document.body.parentNode.scrollTop;
   } else {
      var scdist = document.body.scrollTop;
   }
   if(scrj<50 && scdist) {
      scdist = (scdist>2) ? Math.ceil(scdist*.2) : 1;
      scrj++;
      scrollBy(0,-scdist);
      setTimeout("softScrollBack()",20);
   } else {
      scrollTo(0,0);
      scrj = 1;
   }
}

function OpenPop(theURL,winName,features) { 
  window.open(theURL,winName,features,"scrollbars=no,resizable=no");
}