﻿function bluring(){ 
    if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring;


//텍스트박스 엔터키 처리
function enterProc(e)
{
    if (e.keyCode == 13)
        e.returnValue = false;
}

window.document.forms[0].onkeypress = function() {enterProc(event);}
