function quicklinks(text){
	document.getElementById("quickLinksText").innerHTML = text;
	if(text == "clear"){
		document.getElementById("quickLinksText").innerHTML = "";
	}
}
function CreateBookmarkLink() { 
	title = "Mesa ALC"; 
	url = document.location.href; 
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,"");	
	}
	else if(window.external) { 
		window.external.AddFavorite( url, title); 
	}	
	else if(window.opera && window.print) { 	
		return true; 
	} 
	else{
		alert("Your browser does not allow for direct link bookmarking. Please follow the standard procedures for adding Mesa-Alc to your favorites by consulting your browsers help file.");
	}
}