///////////////////// Open Browser ////////////////////////
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable, kind)
		{
		if(kind == 1){
			var winl = (screen.width/2)-(width/2); 
			var wint = (screen.height/2)-(height/2); 
		}
			toolbar_str = toolbar ? 'yes' : 'no';
			menubar_str = menubar ? 'yes' : 'no';
			statusbar_str = statusbar ? 'yes' : 'no';
			scrollbar_str = scrollbar ? 'yes' : 'no';
			resizable_str = resizable ? 'yes' : 'no';
			fo = window.open(url, name, 'left='+winl+',top='+wint+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
			fo.focus();
		}


function linkblur(){  // ¸µÅ©¿¡ Á¡¼± ¾ø¾Ö±â //Firefox¿¡¼­ ¾È¸Ô´Â´Ù
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=linkblur;
document.write('<body>');
