// JavaScript Documentfunction createBookmarkLink() {	title = document.title;	url = window.location.href;     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; 	}	else	{		alert("Your browser does not support this feature. To bookmark this page please press 'ctrl' + 'D' (Windows) or the apple key + 'D' (Mac) on your keyboard.");	}}