//image click
function autoBlur(){ 
  if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") 
  document.body.focus(); 
} 
  document.onfocusin=autoBlur; 

//pop_up
function openWin(url,width,height){

	window.open(url,'','width='+width+',height='+height+',scrollbars=no,resized=no');

}

//pop_up02
function openWin02(url,width,height){

	window.open(url,'','width='+width+',height='+height+',scrollbars=yes,resized=no');

}

