
	if (document.images) {

	secabout_on = new Image();
    secabout_on.src = "images/secondaryabout_on.gif";

    secabout_off = new Image();
    secabout_off.src = "images/secondaryabout.gif";
				
    secpractice_on = new Image();
    secpractice_on.src = "images/secondarypractice_on.gif";

    secpractice_off = new Image();
    secpractice_off.src = "images/secondarypractice.gif";
				
    secpublication_on = new Image();
    secpublication_on.src = "images/secondarypublication_on.gif";

    secpublication_off = new Image();
    secpublication_off.src = "images/secondarypublication.gif";
	 			
    secresources_on = new Image();
    secresources_on.src = "images/secondaryresources_on.gif";

    secresources_off = new Image();
    secresources_off.src = "images/secondaryresources.gif";

	}
				
function turnOn(imageName) {
	if (document.images) {
	document[imageName].src = eval(imageName + "_on.src");
	}
}

function turnOff(imageName) {
	if (document.images) {
	document[imageName].src = eval(imageName + "_off.src");
	}
}

	function dm(msgStr) {
    window.status = msgStr;
    document.returnValue = true;
}

