// JavaScript DocumentstartList = function() { 
startList = function() { 
if (document.all&&document.getElementById) { 
navRoot = document.getElementById("sidemenu"); 
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", ""); 
} 
} 
} 
} 
} 
window.onload=startList; 
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() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		if (navRoot!=null)	
		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", "");
				}
			}
		}
	}
}
window.onload=startList;

function getBack(){
	history.go(-1)
}

function showItems(itemsid) {
    var obj = document.getElementById(itemsid);
    if (obj != null) {
        if (obj.style.visibility == 'hidden') {
            obj.style.visibility = 'visible';
        }
    }
}

function hideItems(itemsid) {  
    var obj = document.getElementById(itemsid);
    if (obj != null) {
        obj.style.visibility = 'hidden';
    }
}

//--><!]]></script>

