var combodropimage=''; //path to "drop down" image
var combodropoffsetY=42; //offset of drop down menu vertically from default location (in px)
var combozindex=100;
var menucount=0;
if (combodropimage!="")
	combodropimage='<img class="downimage" src="'+combodropimage+'" title="Select an option" />';

function dhtmlselect(selectid, count){
    if (document.getElementById('dhtml_'+count)){
    return;
    }
   	menucount++;
   	var selectbox=document.getElementById(selectid);
	document.write('<tr><td><div id="dhtml_'+count+'" class="dhtmlselect"><span class="menutitletext">'+selectbox.id+" "+combodropimage+'</span><div class="dropdown">');
	for (var i=0; i<selectbox.options.length; i++){
		document.write('<a href="'+selectbox.options[i].value+'">'+selectbox.options[i].text+'</a>');
	}
	document.write('</div></div></td></tr>');
	selectbox.style.display="none";
	var dhtmlselectbox=document.getElementById("dhtml_"+count);
	dhtmlselectbox.style.zIndex=combozindex;
	combozindex--;	
    dhtmlselectbox.onmouseover=function(){
		this.getElementsByTagName("div")[0].style.display="block";
		this.style.color="#000000";
		this.style.background="#FBAF41";
		this.style.fontWeight="bold";
	}
	dhtmlselectbox.onmouseout=function(){
		this.getElementsByTagName("div")[0].style.display="none";
		this.style.background="#EAE6E5";
		this.style.color="#000000";
		this.style.fontWeight="bold";
      

	}
}
