function swap(targetId) {

  if (document.getElementById)
        {
        target = document.getElementById(targetId);

            if (target.style.display == "none")
                {
                target.style.display = "";
                }

            else
                {
                target.style.display = "none";
  					 }

        }
}

function addbookmark()
{
bookmarkurl="http://hpschapters.org/cascade/2007hps/index.html"
bookmarktitle="2007 HPS Annual Meeting"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function openpopup(popurl){
var winpops=window.open(popurl,"","width=400px,height=270px,scrollbars,resizable")
}
