//\  show/hide login
	function toggle(cid){
		document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="block")? "block" : "none"
	}
//\  for the dropdown>>
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", "");
				}
			}
		}
	}
}


//\/////
//\  radio buttons show/hides layer
function set(What,Value) {
    if (document.layers && document.layers[What] != null) document.layers[What].visibility = Value;
    else if (document.all) eval('document.all.'+What+'.style.visibility ="'+ Value+'"');
}

function clicked(Form,Radio,Layer) {
    for (var i=0; i<Form[Radio].length; i++) {
        if (Form[Radio][i].checked) set(Layer,Form[Radio][i].value);
    }
}

function toggle(cid){
		document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="blockshow")? "blockshow" : "none"
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
