


	// ** First javascript use: Get out of any nasty frames **
	    if (top.location != location) {
	    top.location.href = document.location.href ;
	  }



	// ** Second javascript use: allow users to click a link to add the site to their favourites
	function addBookmark(title,url) {
		if (window.sidebar) {
			window.sidebar.addPanel(title, url,"");
			}
			else if( document.all ) {
			window.external.AddFavorite( url, title);
			}
			else if(window.opera && window.print ) {
			return true;
		}
	}




