function doSelect(formObject,selectvalue) {
	for (x=0;x<formObject.options.length;x++) {
		ValueVar= formObject.options[x].value
		if (ValueVar == selectvalue) {
			formObject.selectedIndex=x
		}
	}
}

function changePage(url) {
	document.location= url;
}


function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("actions");
		for (i=0; i<navRoot.childNodes.length; i++) {
			if (navRoot.childNodes[i]) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="DIV") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
			}
		}
	}
}


function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=620,height=600');");
}

function addHover () {
    var elements = document.getElementsByTagName('input');
	
    for (var i = 0; i < elements.length; i++) {
        var node = elements[i];
	
	node.onmouseover=function() {
		this.className+=" mouseover";
	}
	node.onmouseout=function() {
		this.className=this.className.replace(" mouseover", "");
	}

    }
}


