﻿function bluring(){
    if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}

//Event
document.onfocus = bluring;

window.onload=function(){
    init() ; 
}

function $$(obj){
  return document.getElementById(obj) ;
}


   function check(obj,message){
            if(obj.value.length < 1){
                alert(message); 
                obj.focus() ;
                obj.select(); 
                return false ; 
            }else{
                return true; 
            }
        }