// JavaScript Document
function director(source,title,fs){
	//alert(source);
	//var f = document.getElementById('mainFrame');
	if(fs){
		top.mainFrame.location.href = source;
		//location.href = source;
		//alert(title);
		if(title != 'nil'){
			document.titleImage.src = "../images/"+title+".gif";
		}
	}else{
		alert(source);
	}
	
}

function navSet(navID){
	var imagePlace;
	imagePlace = "Image"+navID;
	document[imagePlace].src = "images/nav/nav"+navID+"_d.gif";
	imgDown = navID;
	imgRestore();

}

function imgRestore(){
	var navCount,imagePlace;
	imagePlace = "x";
	navCount = 9;

	var i = 0; 
	while(i<navCount){ 
	   if((i+1)!=imgDown){
			imagePlace = "Image"+(i+1);
			document[imagePlace].src = "images/nav/nav"+(i+1)+"_u.gif";
		}
	   i++; 
	}
}

<!-- admin functions
function mListSelect(){ //v1.0 4LevelWebs
	var menuid = document.getElementById("menuListSelect");
	parent.navAction.location.href = "nav.php?menuid="+menuid.value;
	parent.display.location.href = "display.php?menuid="+menuid.value;
	menuid.selectedIndex = 0;
}


function dListSelect(menuid){
	var divid = document.getElementById("divListSelect");
	parent.display.location.href = "create.php?action=newItem&menuid="+menuid+"&divid="+divid.value;
	
}

function btnSelector(action,menuid){ //v1.0 4LevelWebs
	parent.display.location.href = "create.php?menuid="+menuid+"&action="+action;
}



//-->
