// JavaScript Document
function fav() {
	var newT = document.createTextNode('Kennzeichnen Sie diese Seite');
	var pic = document.createElement("img");
	var s = document.getElementById('fav');
	if (window.sidebar) {
		s.appendChild(pic);
		pic.src = "img/karta.png";
		pic.style.marginRight = "3px"; 
		
		s.appendChild(newT);
		s.style.color = '#FF9900';
		s.style.cursor = 'pointer';
		s.onmouseover = function(){
			this.style.color = '#000000';
		};
		s.onmouseout = function(){
			this.style.color = '#FF9900';
		};
		s.onclick = function() {
			window.sidebar.addPanel(document.title,self.location,'')
		};
	} else if (window.external) {
		s.appendChild(pic);
		pic.src = "img/karta.png";
		pic.style.marginRight = "3px"; 
		
		s.appendChild(newT);
		s.style.color = '#FF9900';
		s.style.cursor = 'pointer';
		s.onmouseover = function(){
			this.style.color = '#000000';
		};
		s.onmouseout = function(){
			this.style.color = '#FF9900';
		};
		s.onclick = function() {
			window.external.AddFavorite(self.location,document.title)
		};
	} else if (window.opera) {
		s.appendChild(pic);
		pic.src = "img/karta.png";
		pic.style.marginRight = "3px"; 
		
		s.appendChild(newT);
		s.style.color = '#FF9900';
		s.style.cursor = 'pointer';
		s.onmouseover = function(){
			this.style.color = '#000000';
		};
		s.onmouseout = function(){
			this.style.color = '#FF9900';
		};
		s.onclick = function() {
			 var e = document.createElement('a');
			 e.setAttribute('href',self.location);
			 e.setAttribute('title',document.title);
			 e.setAttribute('rel','sidebar');
			 e.click();
		}
	}
}

var pageLoaded = 0;
window.onload = function() {
	pageLoaded = 1;
}
function loaded(i,f) {
	if (document.getElementById && document.getElementById(i) != null) 
		f();
else if (!pageLoaded) 
	setTimeout('loaded(\''+i+'\','+f+')',100);
}
loaded('fav',fav);