
// ****************************************************************
// ** Copyright 2007 Northern Rhode Island Animal Hospital - All Rights Reserved.	
// ****************************************************************


// Figure out url for toolbar via the passed section name (see StateManager.vb)
function navigate(url) {
	parsedUrl = url.substring(3, url.length);
	top.location.href = "../" + parsedUrl;
}


// Maintain state of toolbar
function toolState(section) {
	toolButton = "tool" + section;
	document.getElementById("toolStateID").value = toolButton;
	setTimeout("toolStateAction()",500);
}


// Maintain state of toolbar must delay with a setTimeout
function toolStateAction() {	
	var toolStateID = document.getElementById("toolStateID").value;
	document.getElementById(toolStateID).className = "toolbarcellhigh1";
}


// Highlight toolbar
function toolHighlight(obj) {
	var toolStateID = document.getElementById("toolStateID").value;
	if (obj.id != toolStateID) {
		obj.className='toolbarcellhigh2';
	}
}


// Unhighlight toolbar
function toolUnhighlight(obj) {
	var toolStateID = document.getElementById("toolStateID").value;
	if (obj.id != toolStateID) {
		obj.className='toolbarcell';
	}
}
