//
//  set the address of Kyojin locations to be clickable so google map
//  pops up when clicked, also assign some mouseover highlighting
//
function highlight(event) {
  this.style.backgroundColor='#ffff88';
  this.style.color='black';
}
function normal(event) {
  this.style.backgroundColor='white';
  this.style.color='';
}
// assign behaviors to the appropriate links
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() {
	    var prefs='width=500,height=500,statusbar=0,menubar=0,toolbars=0';
        window.open(this.href,'',prefs);
        return false;
      }
	  links[i].onmouseover = highlight;
	  links[i].onmouseout  = normal;
    }
  }
}
window.onload = doPopups;