 function CreateBookmarkLink() {

 title = "Webpage Title"; 
 url = "Webpage URL";

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
 }

	function highlight(item, from, to) {
		
		var x = from;
		for (x; x <= to; x++) {
			
			var cl = document.getElementById(item + x).className;
			if (!cl.match("disabled")) document.getElementById(item + x).className = cl + ' highlight';
		}

	}

	function unlight(item, from, to) {
		
		var x = from;
		for (x; x <= to; x++) {
			
			var cl = document.getElementById(item + x).className.replace(" highlight", "");
			document.getElementById(item + x).className = cl;
		}
	}
	function show_arrows(id) {
		
		document.getElementById(id + '_left').className = 'left-arrow';
		document.getElementById(id + '_right').className = 'right-arrow';
	}	

	function hide_arrows(id) {
		
		document.getElementById(id + '_left').className = 'left';
		document.getElementById(id + '_right').className = 'right';
	}	


