// ------------------------------------------------------------------------
//	DHTML CSS Menu
// ------------------------------------------------------------------------
// function to activate a link in the toolbar
	function linkOn(currentLink, cell) { 
		currentLink.style.color = "#999999";
		currentLink.style.fontWeight = "Bold";
		currentLink.style.textDecoration = "underline";
	
		var currentCell = document.getElementById(cell);
		currentCell.style.backgroundColor = "#FFFFFF";
}
// function to deactivate a link in the toolbar
	function linkOff(currentLink, cell) {
		currentLink.style.color = "#000066";
		currentLink.style.fontWeight = "Bold";
		currentLink.style.textDecoration = "none";

		var currentCell = document.getElementById(cell);
		currentCell.style.backgroundColor = "#999999";
}

// ------------------------------------------------------------------------
//	Add To Favorites
// ------------------------------------------------------------------------
<!--  Hide script from older browsers
 var urlAddress = "http://www.gcldesigns.com";
 var pageName = "G.C.L. Designs - Professional Web Site Designs";

 function addToFavorites()
 {
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.");
  }
 }
// -->