var mstrColor = "";
function FindChoice()
{
var objSource, objTarget, objTags;
var strCleanID, strTargetID, strTagID;
window.event.returnValue = false;
window.event.cancelBubble = true;
objSource = window.event.srcElement;
if (objSource.id.length == 0)
objSource = objSource.children[0];
strCleanID = objSource.id.substr(1);
strTargetID = "Choice" + strCleanID;
if (objSource.parentElement.className == "bullet")
{
window.event.returnValue = true;
window.event.cancelBubble = true;
return;
}  
if (objSource.parentElement.className == "minus")
{
objSource.parentElement.className = "plus";
objTarget = document.all(strTargetID);
objTarget.style.display = "none";
}
else
{
objTags = document.all.tags("ul");
for (i = 0; i < objTags.length; i++)
{
strTagID = objTags[i].id.substr(0,6);
if (strTagID == "Choice")
{
objTags[i].style.display = "none";
objTags[i].parentElement.className = "plus";
}
}
objSource.parentElement.className = "minus";
objTarget = document.all(strTargetID);
objTarget.style.display = "";
}
}
function MouseOver()
{
mstrColor = window.event.srcElement.style.color;
window.event.srcElement.style.color = "#FF4500";
}
function MouseOut()
{
window.event.srcElement.style.color = mstrColor;
}
function GoBack()
{
window.event.returnValue = false;
window.event.cancelBubble = true;
var aTopLevel = [ 'toc_admin.htm', 'toc_home.htm', 'toc_statusreports.htm',
'toc_tasks.htm', 'toc_views.htm', 'goingoffline.htm' ];
for(var i = 0; i < aTopLevel.length; i++)
{
if (aTopLevel[i] == window.document.location.pathname.toLowerCase().match(/\/([^/]*)$/)[1])
return;
}     
window.history.back();               
}
