function CreateBookmarkLink() {
  title = "Ich will wechseln";
  url = "http://www.ichwillwechseln.de";
  if (window.sidebar) { // Mozilla Firefox Bookmark
    window.sidebar.addPanel(title, url,"1");
  } else
  if( window.external ) { // IE Favorite
    window.external.AddFavorite( url, title);
  } else
  if(window.opera && window.print) { // Opera Hotlist
     return true;
  }
}

function poolPrint() {
  window.print();
}

function inNewWin(url) {
  window.open(url+"/1", undefined,
    "width=750,height=500,location,menubar,resizable,scrollbars,status,toolbar")
}
