			/**
			 * adds the title (second h1-tag) at the end of the url in the link-object
			 */
			function addTitle(linkObj) {
				linkObj.href += document.getElementsByTagName("h1")[0].innerHTML;
			}



			/**
			 * Browser Bookmark
			 */
		function addBookmark(title,url) {
    if( document.all ) {
	var add = 'JAX 2008 ' + document.getElementsByTagName("h1")[0].innerHTML;	
	window.external.AddFavorite( url, add);
    }
    else if (window.sidebar) {		
	var add = 'JAX 2008 > ' + document.getElementsByTagName("h1")[0].innerHTML;	
	window.sidebar.addPanel(add, url,""); 
    } 
    else if( window.opera && window.print ) {
	return true;
    }
}