<!--                                                                                                                                                                                                                                                                                                                                             
// »õ Ã¢ ¶ç¿ì±â                                                                                                                                                                                                                                                                                                                                             
function New_Window(url, width, height) {                                                                                                                                                                                                                                                                                                                                             
var Win_Str = 'width=' + width + ',height=' + height + ', top=100,left=100,toolbar=0,scrollbars=1,resizable=no'                                                                                                                                                                                                                                                                                                                                             
    farwindow = window.open('','_new',Win_Str);                                                                                                                                                                                                                                                                                                                                             
	if (farwindow != null) {                                                                                                                                                                                                                                                                                                                                             
		if (farwindow.opener == null) {                                                                                                                                                                                                                                                                                                                                             
			farwindow.opener = self;                                                                                                                                                                                                                                                                                                                                             
		}                                                                                                                                                                                                                                                                                                                                             
		farwindow.location.href = url;                                                                                                                                                                                                                                                                                                                                             
	}                                                                                                                                                                                                                                                                                                                                             
}                                                                                                                                                                                                                                                                                                                                                    
//-->
