var baseURL = '/dept/annual_reports/01_02' ;

if (document.images) {            // Preload Active Images
	
}


// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_B.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_A.src");
        }
}

function RTSNameWindow(){
	//Name the window so that the Java TOC can load pages into it
	window.name="main";
}

function displayTOC(){
	strFeatures='Width=250px,Height=250px,status=yes,top=10,left=10,resizable=yes,scrollbars=no';
	window.open(baseURL + '/toc/index.html','tocWindow',strFeatures);
	}
function displayFSV(){
	strFeatures='Width=800px,Height=550px,status=yes,top=10,left=10,resizable=yes,scrollbars=yes';
	window.open(baseURL + '/fsv/default_viewer.htm','viewerWindow',strFeatures);
	}
