/*

ÀÌ¹ÌÁö ¶óÀÎ ¾ø¾Ö±â

*/


function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 

/*

¼¿·ºÆ®¹Ú½º ¸µÅ©

*/

	function goto_new(form) {
		var windowprops = "";
		var URL = form.go.options[form.go.selectedIndex].value;
			if (URL != "" && URL != null){
		popup = window.open(URL,'',windowprops);
		}
	}