	function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
	{
		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';
		window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
	}
	
	function susang() {
		document.form1.submit();	
	}
	
	function search_open(){
		window.open("findart.asp","zip","width=450,height=400,scrollbars=yes");
	}
	
	function search_open1(){
		window.open("findliterature.asp","zip","width=450,height=400,scrollbars=yes");
	}
	
	function MM_openBrWindow(theURL,winName,features) { //v2.0
		window.open(theURL,winName,features);
	}
	
	function aaa(theURL) { //v2.0
		window.open(theURL,"_blank", "width=800, height=600");
	}
	
	function openFind(){
		window.open("find_support.asp","support","width=466,height=400,scrollbars=yes");
	}
	function openBreak(){
		window.open("support_break.asp","support","width=300,height=375,scrollbars=NO");
	}
	
	function process_go(a, b, c)
	{
		document.form1.page.value = a;
		document.form1.search.value = b;
		document.form1.SearchString.value = c;
		document.form1.submit();
	}

	function go(a)
	{
		document.form1.page.value = a;
		
		document.form1.submit();
	}
	
	function del(a)
	{
		document.form1.key.value="del";
		document.form1.page.value=a;
		document.form1.search.value = 'default';
		document.form1.submit();
	}
	
	function goto() {
		document.form1.submit();
	}
	
	function gomovie() 
	{
		document.select_val.submit();
	}
	
	function del_1()
	{
		abc=confirm('Á¤¸» »èÁ¦ ÇÏ½Ã°Ú½À´Ï±î?');

		if (abc == true)
			del_ok();
		else
			return;
	}

	function del_ok()
	{
		document.del.submit();
	}
	
	function new_win(url) 
	{
		window.open(url, "_blank", "width=368,height=474, scrollbars=no")
	}
	
	function win_open_art(u){
		window.open(u,"art_target","width=650,height=480,scrollbars=yes, left=100, top=100");
	}

	var imgObj = new Image();


function showImgWin(imgName) {
imgObj.src = imgName;
setTimeout("createImgWin(imgObj)", 100);
}
function createImgWin(imgObj) {
if (! imgObj.complete) {
setTimeout("createImgWin(imgObj)", 100);
return;
}
imageWin = window.open("", "imageWin",
"width=" + imgObj.width + ",height=" + imgObj.height);
imageWin.document.write("<html><body style='margin:0'>") ;
imageWin.document.write("<img src='" + imgObj.src + "'>") ;
imageWin.document.write("</body><html>") ;
imageWin.document.title = imgObj.src;
}
