
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 




function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}




// ¿øº» ÀÌ¹ÌÁöº¸±â
function showImgWin(imgName, imgWidth, imgHeight)     { 
        var imageWin = new Object();

        imageWin = window.open("", "imageWin", "width=" + imgWidth + ",height=" + imgHeight);
        imageWin.document.write("<html><body style='margin:0'>"); 
        imageWin.document.write("<a href='#' onclick='window.close()'><img src='" + imgName + "' border=0 style='position:absolute;top:0pt;left:0pt;' alt='Å¬¸¯ÇÏ¸é ´ÝÈü´Ï´Ù.' width='" + imgWidth + "' height='" + imgHeight + "'></a>"); 
        imageWin.document.write("</body><html>"); 
        imageWin.document.title = ("¿øº» ÀÌ¹ÌÁö") 
} 



	
	
	

// Ç®´Ù¿î ¸Þ´º
if (document.getElementById){
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
        if(document.getElementById){
        var el = document.getElementById(obj);
        var ar = document.getElementById("maindiv").getElementsByTagName("span"); 
                if(el.style.display != "block"){
                        for (var i=0; i<ar.length; i++){
                                if (ar[i].className=="submenu") 
                                ar[i].style.display = "none";
                        }
                        el.style.display = "block";
                }else{
                        el.style.display = "none";
                }
        }
}










