function addBookmark(){
	var SeitenURL = 'http://www.geotrac-supercup.at';
	var SeitenTitel = 'Geotrac Supercup';
	var Kommentar = 'Die Webseite für den internationalen Geotrac Supercup!';

	if (window.sidebar) { // firefox
		window.sidebar.addPanel(SeitenTitel, SeitenURL,"");
	} else if( window.external ) { //MSIE
		window.external.AddFavorite( url, title);
	} else {
		//alert("Sorry, your browser doesn't support this");
	}

}

