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", "");
   }
   }
  }
 }
}
window.onload=startList;

blankField = function(f,t,v) {
	if(t =="pw"){
		document.getElementById("lipwfield").innerHTML = "<input style=\"width:118px\"  id=\"userpass\" name=\"userpass\" type=\"password\" maxlength=\"40\" />";
		setTimeout('document.getElementById("userpass").focus();',250);
	
	}else{
		if(f.value==v){
			f.value="";
		}
	}
}

pollresults = function(i){
	var thisURL="/poll-results/index.php?poll_id="+ i;
	window.open(thisURL, 'popupnav', 'width=340,height=340,resizable=1,scrollbars=yes');
}
		
