// JavaScript Document

//¼¿·ºÆ®¹Ú½º ²Ù¹Ì±â v1.2 
//================================================ JS 
var zindex = 10000; 
select_count = new Array(); 
ev_click     = new Array(); 

function insert_select (sn,w,f,b,g,fc,c,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='1' cellpadding='1' width='"+w+"' style='table-layout:fixed;width:"+w+";' ' bgcolor='"+b+"' onclick='select_click(\""+sn+"\");' >"); 
document.write("    <tr>"); 
document.write("        <td bgcolor='"+g+"' align='absmiddle'>"); 
document.write("            <input type='text' id='"+sn+"_select_name' name='"+sn+"_select_name' style='border:none;background-color: "+g+";cursor:hand;width:100%;height:11px;color:"+fc+";font-size:"+f+"pt' onselectstart=\"return false\" readonly> "); 
document.write("        </td>"); 
if(img != "") { 
document.write("    <td width=18 bgcolor='"+g+"' align=center valign=middle style='cursor:hand'><img src='"+img+"' align='absmiddle'></td>");         
} else { 
document.write("    <td width=18 bgcolor='"+g+"' align=center valign=middle style='cursor:hand'>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:hand' 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:1.3em;' id='"+sn+"_select_span'></td></tr>"); 
document.write("        </table>"); 
document.write("    </div>"); 
} 

function insert_select_option(sn,f,b,g,fc,c,v,vv,chk)     {     
select_count[sn] ++;     
option_html = "<span style='width:100%;color:"+fc+";font-size:"+f+"pt' onclick='"+sn+"_select_name.value=\""+vv+"\";"+sn+".value=\""+v+"\";"+sn+"_select_div.style.display=\"none\";"+ev_click[sn]+";' onmouseover='this.style.background=\""+c+"\"' onmouseout='this.style.background=\""+g+"\"'>"+vv+"</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  select_click(sn)     {     
if ( document.getElementById( sn+"_select_div").style.display == "none") { 
document.getElementById( sn+"_select_div").style.display = ""; 
} else { 
document.getElementById( sn+"_select_div").style.display = "none"; 
} 
} 
////================================================ JS 
