function FilldrpProduct()

{
//creo un array por cada elemento

valueArray=document.all.drpTechnology.item(document.all.drpTechnology.selectedIndex).valueList.split("|")

// Limpio drpProduct

document.all.drpProduct.length=0


//creo las opciones del drpProduct

for(i=0; i<valueArray.length;i++)
	{
	if (valueArray[i].length > 0)	{
		array=valueArray[i].split(',');
		newOption=document.createElement('OPTION');
		newOption.text=array[0];
		newOption.value=array[1];
		document.all.drpProduct.add(newOption);
	}
	}
}


startList = function() {
	try {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("nav");
			navRoot.onmouseover=function() {
						this.className+=" over";
					}
			navRoot.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	} catch (e) {
		var error='1';
	}
}
window.onload=startList;

//--><!]]></script>
