//¿À¸¥ÂÊ ¸¶¿ì½º ¹× µå·¡±× ±ÝÁö
//document.oncontextmenu = function(){return false;}   //¿À¸¥ÂÊ ¸¶¿ì½º
//document.onselectstart = function(){return false;}   //µå·¡±× ±ÝÁö


//Å¬¸¯½Ã Á¡¼± ¾È»ý±â°Ô.. (A ÅÂ±× ¸ù¶¥)
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
anchors[i].onfocus = anchors[i].blur;
}

//Å¬¸¯ Á¡¼±2 (IMGÀÇ AÅÂ±×)
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring;


// ·Ñ¿À¹ö½Ã ¸Þ´º ÀÌ¹ÌÁö º¯°æ
function changeIt(ImageToChange, ImageToShow) { 
    if (document.images) { document[ImageToChange].src = ImageToShow; } 
} 
function bar(message) { 
    if (document.images) { window.status = message; return true } 
}