// JavaScript Document


// Sets the white background color on the active nav item

function hold_white(title)

{

var activename = document.getElementById(title).title;
//alert("Name is " + activename);
make_white(activename);

}


function make_white(id)
{

document.getElementById(id).style.backgroundColor="white";


}


// Sets the rollover function for the assessment.html pie chart text

function rollover(name,pic) {

	if (document.images)

        document.images[name].src = pic;

}

function rollout(name,pic) {

	if (document.images)

        document.images[name].src = pic;

}


// Determines stylesheet used - text-only or default, for single browsing only

function setStyleSheetText()
{

document.getElementById('default').href="../stylesheet-printer.css";

}



