
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 search(t)
{
	var url;
	var h, w, s;
	if( t == 1 )
	{
		url = "search.asp";
		h = 300;
		w = 470;
		s = 1;
	}
	else 
	{
//		if( document.form1.id.value == "" || document.form1.id.value.length < 4 )
//		{
//			alert("¾ÆÀÌµð Á¶°ÇÀÌ Àß¸øµÇ¾ú½À´Ï´Ù.");
//			document.form1.id.focus();
//			return;
//		}
		url = "search.asp?id="+document.form1.id.value;
		h = 125;
		w = 400;
		s = 0;
	}
	
	na_open_window("win", url, 0, 0, w, h, 0, 0, 0, s, 0);
}
