<!-- Hiding
// check if the browser is Navigator 3 or higher:
agent=navigator.userAgent;
browserVer=2;

if(agent.substring(0,7)=="Mozilla"){
	if(parseInt(agent.substring(8,9)) >= 3){
		browserVer=1;
	}
}

// preload universal images:

if (browserVer == 1)  {

        SeeYou = new Image(133,29);
	SeeYou.src = "/RUC/images/button/Books/SeeYou.gif";
        SeeYou2 = new Image(133,29);
        SeeYou2.src = "/RUC/images/button/Books/SeeYouOn.gif";

        Charity = new Image(133,29);
        Charity.src = "/RUC/images/button/Books/Charity.gif";
        Charity2 = new Image(133,29);
        Charity2.src = "/RUC/images/button/Books/CharityOn.gif";

        Atlas = new Image(133,29);
	Atlas.src = "/RUC/images/button/Books/Atlas.gif";
        Atlas2 = new Image(133,29);
        Atlas2.src = "/RUC/images/button/Books/AtlasOn.gif";

	Falling = new Image(133,29);
        Falling.src = "/RUC/images/button/Books/Falling.gif";
        Falling2 = new Image(133,29);
        Falling2.src = "/RUC/images/button/Books/FallingOn.gif";

        Rising = new Image(133,29);
        Rising.src = "/RUC/images/button/Books/Rising.gif";
        Rising2 = new Image(133,29);
        Rising2.src = "/RUC/images/button/Books/RisingOn.gif";

        Sacred = new Image(133,29);
        Sacred.src = "/RUC/images/button/Books/Sacred.gif";
        Sacred2 = new Image(133,29);
        Sacred2.src = "/RUC/images/button/Books/SacredOn.gif";

        Soul = new Image(133,29);
        Soul.src = "/RUC/images/button/Books/Soul.gif";
        Soul2 = new Image(133,29);
        Soul2.src = "/RUC/images/button/Books/SoulOn.gif";
        
        Tapestry = new Image(133,29);
        Tapestry.src = "/RUC/images/button/Books/Tapestry.gif";
        Tapestry2 = new Image(133,29);
        Tapestry2.src = "/RUC/images/button/Books/TapestryOn.gif";

        Voices = new Image(133,29);
        Voices.src = "/RUC/images/button/Books/Voices.gif";
        Voices2 = new Image(133,29);
        Voices2.src = "/RUC/images/button/Books/VoicesOn.gif";

        Search = new Image(133,29);
        Search.src = "/RUC/images/button/Books/Search.gif";
        Search2 = new Image(133,29);
        Search2.src = "/RUC/images/button/Books/SearchOn.gif";

        Contact = new Image(133,29);
        Contact.src = "/RUC/images/button/Contact.gif";
        Contact2 = new Image(133,29);
        Contact2.src = "/RUC/images/button/ContactOn.gif";

        Books = new Image(133,29);
        Books.src = "/RUC/images/button/Books.gif";
        Books2 = new Image(133,29);
        Books2.src = "/RUC/images/button/BooksOn.gif";

        Project = new Image(133,29);
        Project.src = "/RUC/images/button/ProjectHome.gif";
        Project2 = new Image(133,29);
        Project2.src = "/RUC/images/button/ProjectHomeOn.gif";

     }

function hiLite(imgDocID, imgObjName) {

// imgDocID - the name or number of the document image to be replaced
// imgObjName - the name of the image object to be swapped in


        if (browserVer == 1) {
               document.images[imgDocID] .src = eval (imgObjName +  ".src")  }}       

function printS(s)

        {
        window.status=s;
        return true;
   }

function clearS()

        {
        window.status="";
        return true
        }

// End hiding -->

