window.defaultStatus = "Warping.org - witzige Computergrafik";
var favoriteURL = "http://www.warping.de/";
var favoriteTitel = "Warping.org - humorvolle Bildverfremdungen";

function checkMouseButton(e) {
   if (document.all) {
      if (event.button == 2 || event.button == 3) {
	 window.external.AddFavorite(favoriteURL, favoriteTitel);
      }
      return false;
   }
   return true;
}

var hasDHTML = true;
var theCommand = "none";
function noDHTML() {
	if (document.all) document.all.dhtml.style.display=theCommand;
	else if (document.getElementById) 		document.getElementById("dhtml").style.display=theCommand;
}


document.onmousedown=checkMouseButton;
window.onmousedown=checkMouseButton;
self.focus();