//¼¿·ºÆ® ¹Ú½º

function goto_byselect(sel, targetstr)
	{
	  var index = sel.selectedIndex;
	  if (sel.options[index].value != '') {
		 if (targetstr == 'blank') {
		   window.open(sel.options[index].value, 'win1');
		 } else {
		   var frameobj;
		   if (targetstr == '') targetstr = 'self';
			 frameobj.location = sel.options[index].value;
		 }
	  }
	}





function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
	//window.open(theURL,'','');
}
