<!-- This script works in: Navigator 3 - 4, Opera 3.1, and Explorer 4

if (document.images){
	
	left_arrowon = new Image();		// Active images
	left_arrowon.src = "images/leftarrow_on.gif";
	left_arrowoff = new Image();		// Inactive images
	left_arrowoff.src = "images/leftarrow.gif";

	right_arrowon = new Image();		// Active images
	right_arrowon.src = "images/rightarrow_on.gif";
	right_arrowoff = new Image();		// Inactive images
	right_arrowoff.src = "images/rightarrow.gif";

}

function imgon(imgName) {
	
	if (document.images) {
		
		document[imgName].src = eval(imgName + "on.src");
		
	}
	
}

function imgoff(imgName) {
	
	if (document.images) {
		
		document[imgName].src = eval(imgName + "off.src");
		
	}
	
}

function OnChange(dropdown) {
	
	var myindex  = dropdown.selectedIndex
	var SelValue = dropdown.options[myindex].value
	var baseURL  = "/admin/index.php?category="
	top.location.href = baseURL + dropdown.options[myindex].value + "#Example";
    
	return true;
	
}
