/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

function bookmarksite(title, url) {
   if (document.all)
      window.external.AddFavorite(url, title);
   else if (window.sidebar)
      window.sidebar.addPanel(title, url, "");
}

function toggleElement(element)
{
    var tmp = document.getElementById(element);
    if (tmp.style.display == "none" || tmp.style.display == "") {tmp.style.display = "block";} else {tmp.style.display = "none";}
}
