function ShowHide(id, visibility) {
    obj = document.getElementsByTagName("div");
    obj[id].style.visibility = visibility;
}

/*/ Looks through the page for all <a> tags with the class name of "popup"
function doPopups() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("popup")) {
      links[i].onclick = function() {
        window.open(this.href);
        return false;
      }
    }
  }
}
// Loads doPopups on page load
window.onload = doPopups;

// Instead of opening the email client, show/hide the email form DIV
function showHide (id, visibility) {
	if (!document.getElementById) return true;
	document.getElementById('email-page-form') = emailpage;
	emailpage.style.visibility = visibility;
	return false;
}
*/


