<!--
startList = function() {
	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 back1() {
history.go(-1);
}
function back2() {
history.go(-2);
}
function popup1(url, name) {
window.open (url, 'standard' + name, 'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizeable=yes, width=400, height=570');
}
function getNumberValue(s,n) {
	s=removeBlanks(s)
	var pairs=s.split(";")
	for(var i=0;i<pairs.length;++i) {
		var pairSplit=pairs[i].split("=")
		if(pairSplit[0]==n) {
			if(pairSplit.length>1) return pairSplit[1]
			else return 0
		}
	}
	return 0
}
function removeBlanks(s) {
	var temp=""
	for(var i=0;i<s.length;++i) {
		var c=s.charAt(i)
		if(c!=" ") temp += c
	}
	return temp
}
function go(url) {
    if (document.images)
        location.replace(url);
    else
        location.href = url;
}

//-->