        if (document.images){
                toc1on = new Image();
                toc1on.src = "images/health_on.jpg";
                toc2on = new Image();
                toc2on.src = "images/life_on.jpg";
                toc3on = new Image();
                toc3on.src = "images/quotes_on.jpg";
                toc4on = new Image();
                toc4on.src = "images/disability_on.jpg";
                toc5on = new Image();
                toc5on.src = "images/longterm_on.jpg";

				
                toc1off = new Image();
                toc1off.src = "images/health_off.jpg";
                toc2off = new Image();
                toc2off.src = "images/life_off.jpg";
                toc3off = new Image();
                toc3off.src = "images/quotes_off.jpg";
                toc4off = new Image();
                toc4off.src = "images/disability_off.jpg";
                toc5off = new Image();
                toc5off.src = "images/longterm_off.jpg";

				
        }

function img_act(imgName) {
        if (document.images) {
                imgOn = eval(imgName + "on.src");
                document [imgName].src = imgOn;
        }}

function img_inact(imgName) {
        if (document.images) {
                imgOff = eval(imgName + "off.src");
                document [imgName].src = imgOff;
        }}
function openWin( windowURL, windowName, windowFeatures ) { 
                return window.open( windowURL, windowName, windowFeatures ) ; 
        } 

