  
	function element(id)
	{
	  if (document.getElementById != null) {
		  return document.getElementById(id);
		}
		if (document.all != null) {
		  return document.all[id];
		}
		if (document.layers != null) {
		  return document.layers[id];
		}
		return null;
	}
	
  function addToFavorites() 
  { 
    var urlAddress = "http://www.justaskjulia.com/"; 
		var pageName = "Julia Morrill"; 
    if (window.external) { 
  	  window.external.AddFavorite(urlAddress,pageName);
  	} 
    else { 
      alert("Sorry! Your browser doesn't support this function."); 
    }
  }
