//¼¿·ºÆ®¹Ú½º ²Ù¹Ì±â v1.2 
//================================================ JS 
var zindex = 10000; 
select_count = new Array(); 
ev_click     = new Array(); 

function insert_select ( sn,w,f,l,b,g,c,k,img,event) { 
	ev_click[sn]    = event; 
	select_count[sn] = 0; 
	zindex--; 
	document.write("<input type=hidden name="+sn+" id="+sn+" value=''>"); 
	document.write("    <table border='0' cellspacing='0' cellpadding='0' width='"+w+"'  style='table-layout:fixed;width:"+w+";border:"+b+" 1px solid;' onclick='select_click(\""+sn+"\","+l+");' id='"+sn+"_tb'>"); 
	document.write("    <tr>"); 
	document.write("        <td bgcolor='"+g+"' style='padding:2px 0px 0px 0px'>"); 
	document.write("            <input type='text' id='"+sn+"_select_name' name='"+sn+"_select_name' style='border:none;cursor:pointer;width:100%;font-size:"+f+"pt;color:"+k+";margin-left:5px;' onselectstart=\"return false\" readonly> "); 
	document.write("        </td>"); 
	if(img != "") { 
	document.write("    <td width=18 bgcolor='"+g+"' align=center valign=bottom style='cursor:pointer'><img src='"+img+"' align='absmiddle'></td>");         
	} else { 
	document.write("    <td width=18 bgcolor='"+g+"' align=center valign=bottom style='cursor:pointer'>v</td>"); 
	} 
	document.write("    </tr>"); 
	document.write("    </table>"); 
	
	document.write("<div id='"+sn+"_select_div' name='"+sn+"_select_div'  style='display:none;z-index:"+zindex+";position:absolute;cursor:pointer'  onmouseover='"+sn+"_select_div.style.display=\"\";' onmouseout='"+sn+"_select_div.style.display=\"none\";'>"); 
	document.write("        <table border='0' cellspacing='1' cellpadding='1' bgcolor='"+b+"' width="+w+" onmouseover='"+sn+"_select_div.style.display=\"\";'>"); 
	document.write("        <tr><td bgcolor='"+g+"' style='line-height:155%;' id='"+sn+"_select_span'></td></tr>"); 
	document.write("        </table>"); 
	document.write("    </div>"); 
} 

function insert_select_option(sn,f,g,c,b,v,vv,chk,evt,evt_type)     {     
	var evt_click = ''; //Å¬¸¯ÀÌº¥Æ®
	var evt_over = '';  //¸¶¿ì½º¿À¹öÀÌº¥Æ®
	var evt_out = '';   //¸¶¿ì½º¾Æ¿ôÀÌº¥Æ®

	if (evt_type == 1) evt_click = evt;
	else if (evt_type == 2) evt_over = evt;
	else if (evt_type == 3) evt_out = evt


	select_count[sn] ++;     
	option_html = "<span style='width:100%;height:100%;font-size:"+f+"pt;background-color:"+g+"'  onclick='"+sn+"_select_name.value=\""+vv+"\";"+sn+".value=\""+v+"\";"+sn+"_select_div.style.display=\"none\";"+ev_click[sn]+";"+evt_click+"' onmouseover='this.style.background=\""+c+"\";"+evt_over+"' onmouseout='this.style.background=\""+g+"\""+evt_out+"'><span style='margin-left:5px;color:"+b+"'>"+vv+"</span></span><br>"; 

	if(select_count[sn] == 1 || chk == "Y" ) { 
		document.getElementById( sn+"_select_name" ).value = vv 
		document.getElementById( sn).value = v 
	} 
	document.getElementById( sn+"_select_span").innerHTML += option_html; 

} 

//·ÎÄÉÀÌ¼Ç °É¾îÁÖ±â
function atag(sn,target) {
	//¹Ù·Î ·ÎÄÉÀÌ¼ÇÀÏ°æ¿ì
	if (!target) {
		if (document.getElementById( sn).value)
		{
			location.href = document.getElementById( sn).value;
		}
	}else {
		//»õÃ¢À¸·Î ¶ç¿ï°æ¿ì (³ªÁß¿¡ ÇÊ¿äÇÏ¸é ¸¸µéÀÚ)
	}
}

function  select_click(sn,l)     {     
	if (document.getElementById( sn+"_select_div").style.display == "none") { 
		Left = place(sn)	
		document.getElementById( sn+"_select_div").style.left = Left+l; 
		document.getElementById( sn+"_select_div").style.display = ""; 
	} else { 
		document.getElementById( sn+"_select_div").style.display = "none"; 
	} 
} 


//ÁÂÇ¥À§Ä¡ ¾Ë¾Æ³»±â
function place(obj) { 
	tb = eval(obj+"_tb");	
    var parent = tb.parentNode; 
    var nNum = tb.offsetLeft; 
    while(parent.tagName.toLowerCase() != 'html') { 
        nNum = nNum + parent.offsetLeft; 
        parent = parent.parentNode; 
         
    } 

	return nNum;
} 

/*
////================================================ »ç¿ë¹ý ============================
//insert_select(ÀúÀåº¯¼ö¸í,°¡·Î,ÆùÆ®Å©±â,·¹ÀÌ¾îÁÂÇ¥(LEFT),º¸µå»ö,¹è°æ»ö,¼±ÅÃ»ö,ÆùÆ®»ö,È­»ìÇ¥ÀÌ¹ÌÁö),¿ÂÅ¬¸¯½Ã ¾×¼ÇÁ¤ÀÇ(¾Ë·µ,·ÎÄÉÀÌ¼Çµî...); 
insert_select("test3","170","9","9","#2f73be","#FFFFFF","#dfe4e9","#000000","/images/good_index/select_cursor.gif","atag(\"test3\",\"\")"); 
//insert_select_option(ÀúÀåº¯¼ö¸í,ÆùÆ®Å©±â,¹è°æ»ö,¼±ÅÃ»ö,ÆùÆ®»ö,value,view_value,ÃÊ±â¼±ÅÃ¿©ºÎ:(Y¼±ÅÃ),ÀÌº¥Æ®ÇÔ¼ö,ÀÌº¥Æ®¹æ½Ä(1=¿ÂÅ¬¸¯,2=¿Â¸¶¿ì½º¿À¹ö,3=¿À¸¶¿ì½º¾Æ¿ô
insert_select_option("test3","9","#9BAEB9","#ffffff","#000000","","ÀÌµ¿ÇÏ°í ½ÍÀº ¸Þ´º¼±ÅÃ ","Y","imgInsert(\"imgTl\",\"tl_img1.gif\")","2"); 
insert_select_option("test3","9","#9BAEB9","#ffffff","#000000","/home/oz_service/oz_content_mng.php?mode=oz_quality","Why Ozmailer? ","","imgInsert(\"imgTl\",\"tl_img2.gif\")","2"); 
////================================================ »ç¿ë ==============================
*/