/*-----  Navi -----*/
function mon(which) {
	document.getElementById(which).style.backgroundImage = "url(img/bg_navi_"+which+"_on.gif)";
}
function moff(which) {
	document.getElementById(which).style.backgroundImage = "url(img/bg_navi_"+which+"_off.gif)";
}

/*----- Layer -----*/
function show(which) {
	document.getElementById('subnavi_'+which).style.visibility = "visible";
}
function hide(which) {
	document.getElementById('subnavi_'+which).style.visibility = "hidden";
}


/*---- Pop Up -----*/
var newWindow;
var site;

// Window Opener
var winW = 400;
var winH = 300;

sH = screen.Height;
sW = screen.Width;

var winX = (sW / 2) - (winW / 2);
var winY = (sH / 2) - (winH / 2);


function popup(site, width, height) {
	newWindow = open(site,"window","resizable=no,toolbar=no,statusbar=no,height="+height+",width="+width+"top="+winY+",left="+winX);
}


function blurAnchors(){
  if(document.getElementsByTagName){
    var a = document.getElementsByTagName("a");
    for(var i = 0; i < a.length; i++){
      a[i].onfocus = function(){this.blur()};
    }
  }
}
window.onload = blurAnchors;
