
function addBookmark(title,url) {	
	if (window.sidebar) { // Mozilla Firefox Bookmark
		alert("Press CTRL + D to bookmark this page");
	} 
	else if( window.external ) { // IE Favorite
		window.external.AddFavorite(url, title); 
	}
	else if(window.opera && window.print) { // Opera Hotlist
		return true; 
	}
}

function onLoad() {
	var pageURL = null;
	var pattern = new RegExp("http://[\\w-\\.]+(/[\\w-\\./]*)([#\\?]?.*)");
	var relativeURL = pattern.exec(document.URL);
	if (relativeURL!=null) {
		pageURL = relativeURL[1];
//		document.title = document.title + "[" + pageURL + "]";
	}
	if (pageURL == "/join.html") {
		window.onunload=myExit;
//		document.title = document.title + "{MATCH!}";
	}
	return true;
}

function myExit() {
//	alert ("... und tschüss baba und foi' ned'!");
	return true;
}

function onUnload() {
	return true;
}
