function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		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", "");
				}
			}
		}
	}
}

function receiveValues(/*varargs*/) {
    // The first argument is the name of the control
    var base = "flash_" + arguments[0] + "_";
	//var outputThis = "";
    // The rest of the arguments are name/value pairs indicating
    // properties for that control...
    for (var i = 0; i < arguments.length; i += 2) {
	   var name = arguments[i]; 
       var val = arguments[i+1];
	   
	   if (val == "undefined"){
	   		document.design[name].value = "None";
	   }else{
       // Set the hidden field on the form "myform"
      	 	document.design[name].value = val;
	   }
	   //outputThis += name + " " + val + ", ";
	
	   
    }
	//alert(outputThis);
}