<!--

if (document.images) {            
            // Active Images

            img1on = new Image();       
            img1on.src = "http://www.unitedwaynola.org/menu_images/test_r4_c1_f2.gif"; 
            img2on = new Image(); 
            img2on.src = "http://www.unitedwaynola.org/menu_images/test_r4_c3_f2.gif";  
            img3on = new Image();
            img3on.src = "http://www.unitedwaynola.org/menu_images/test_r4_c5_f2.gif";
            img4on = new Image();
            img4on.src = "http://www.unitedwaynola.org/menu_images/test_r4_c7_f2.gif";
            img5on = new Image();
            img5on.src = "http://www.unitedwaynola.org/menu_images/test_r4_c9_f2.gif";
            img6on = new Image();
            img6on.src = "http://www.unitedwaynola.org/menu_images/test_r4_c12_f2.gif";
            img7on = new Image();
            img7on.src = "http://www.unitedwaynola.org/menu_images/test_r5_c1_f2.gif";
            img8on = new Image();
            img8on.src = "http://www.unitedwaynola.org/menu_images/test_r7_c1_f2.gif";
            img9on = new Image();
            img9on.src = "http://www.unitedwaynola.org/menu_images/test_r8_c1_f2.gif";
            img10on = new Image();
            img10on.src = "http://www.unitedwaynola.org/menu_images/test_r9_c1_f2.gif";
            img11on = new Image();
            img11on.src = "http://www.unitedwaynola.org/menu_images/test_r10_c1_f2.gif";
            img12on = new Image();
            img12on.src = "http://www.unitedwaynola.org/menu_images/crd_over.gif";
            img13on = new Image();
            img13on.src = "http://www.unitedwaynola.org/menu_images/test_r11_c1_f2.gif";
            img14on = new Image();
            img14on.src = "http://www.unitedwaynola.org/menu_images/test_r12_c1_f2.gif";
            img15on = new Image();
            img15on.src = "http://www.unitedwaynola.org/menu_images/test_r13_c1_f2.gif";
            img16on = new Image();
            img16on.src = "http://www.unitedwaynola.org/menu_images/test_r18_c8_f2.gif";            
            img17on = new Image();
            img17on.src = "http://www.unitedwaynola.org/menu_images/test_r18_c11_f2.gif";
            img18on = new Image();
            img18on.src = "http://www.unitedwaynola.org/menu_images/test_r18_c14_f2.gif";
            img19on = new Image();
            img19on.src = "http://www.unitedwaynola.org/menu_images/test_r6_c1_f2.gif";

            img1off = new Image();       
            img1off.src = "http://www.unitedwaynola.org/menu_images/test_r4_c1.gif"; 
            img2off = new Image(); 
            img2off.src = "http://www.unitedwaynola.org/menu_images/test_r4_c3.gif";  
            img3off = new Image();
            img3off.src = "http://www.unitedwaynola.org/menu_images/test_r4_c5.gif";
            img4off = new Image();
            img4off.src = "http://www.unitedwaynola.org/menu_images/test_r4_c7.gif";
            img5off = new Image();
            img5off.src = "http://www.unitedwaynola.org/menu_images/test_r4_c9.gif";
            img6off = new Image();
            img6off.src = "http://www.unitedwaynola.org/menu_images/test_r4_c12.gif";
            img7off = new Image();
            img7off.src = "http://www.unitedwaynola.org/menu_images/test_r5_c1.gif";
            img8off = new Image();
            img8off.src = "http://www.unitedwaynola.org/menu_images/test_r7_c1.gif";
            img9off = new Image();
            img9off.src = "http://www.unitedwaynola.org/menu_images/test_r8_c1.gif";
            img10off = new Image();
            img10off.src = "http://www.unitedwaynola.org/menu_images/test_r9_c1.gif";
            img11off = new Image();
            img11off.src = "http://www.unitedwaynola.org/menu_images/test_r10_c1.gif";
            img12off = new Image();
            img12off.src = "http://www.unitedwaynola.org/menu_images/crd.gif";
            img13off = new Image();
            img13off.src = "http://www.unitedwaynola.org/menu_images/test_r11_c1.gif";
            img14off = new Image();
            img14off.src = "http://www.unitedwaynola.org/menu_images/test_r12_c1.gif";
            img15off = new Image();
            img15off.src = "http://www.unitedwaynola.org/menu_images/test_r13_c1.gif";
            img16off = new Image();
            img16off.src = "http://www.unitedwaynola.org/menu_images/test_r18_c8.gif";            
            img17off = new Image();
            img17off.src = "http://www.unitedwaynola.org/menu_images/test_r18_c11.gif";
            img18off = new Image();
            img18off.src = "http://www.unitedwaynola.org/menu_images/test_r18_c14.gif";
            img19off = new Image();
            img19off.src = "http://www.unitedwaynola.org/menu_images/test_r6_c1.gif";
            
}

// Function to 'activate' images -return to normal.
function imgOff(imgName) {
        if (document.images) 
        {
			//alert("check=" + check);
            if (check!=imgName)
          {
			  document[imgName].src = eval(imgName + "off.src");
			}
        }
}

// Function to 'deactivate' images -highlight images.
function imgOn(imgName) { 
		if (document.images) 
		{
              document[imgName].src = eval(imgName + "on.src");
        }
}

function changeframes(imgName)
{

  var temp;
  temp=check;
  check="none"; //clear out variable so imgoff will work
	if (temp!=imgName) {
		imgOff(temp);
		check=imgName;
	} else {
		imgOn(temp);
		check=imgName;
	}

} 

function openWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

var check="none"; //home

// End -->

