<!--
//Find out if the navigation bar is on screen
function setupframes (strLeft) {
	if (window.parent.frames.length>0) {
		//Does the nav bar exist in the frameset?
		var objWindow=window.parent.frames["top-navi"];	
		if (objWindow) {
			//Reload navigation bar
			//objWindow.location = "_blank";
			objWindow.location = objWindow.location;
			//objWindow.location.reload(true);
			//alert("Done " + objWindow.location);
		}
		objWindow = window.parent.frames["left"];	
		if (objWindow) {
			objWindow.location = "/admin/redirect.asp?currenturl=" + window.location + "&redirect=" + escape(strLeft.toString());
		}
	}
}
//-->
