<!--
// this script creates mouse over effect on "indicator indicator" pages

      function newImage(arg) {

      	if (document.images) {
      		rslt = new Image();
      		rslt.src = arg;
      		return rslt;
      	}

      }

      function changeImages() {
      	if (document.images && (preloadFlag == true)) {
      		for (var i=0; i<changeImages.arguments.length; i+=2) {
      			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
      		}

      	}

      }
      var preloadFlag = false;
      function preloadImages() {
      	if (document.images) {
      		ind1on = newImage("../images/list/s1_dn.gif");
      		ind2on = newImage("../images/list/s2_dn.gif");
      		ind3on = newImage("../images/list/s3_dn.gif");
      		ind4on = newImage("../images/list/s4_dn.gif");
      		ind5on = newImage("../images/list/s5_dn.gif");
      		ind1off = newImage("../images/list/s1_up.gif");
      		ind2off = newImage("../images/list/s2_up.gif");
      		ind3off = newImage("../images/list/s3_up.gif");
      		ind4off = newImage("../images/list/s4_up.gif");
      		ind5off = newImage("../images/list/s5_up.gif");
      		ind1ov = newImage("../images/list/s1_ov.gif");
      		ind2ov = newImage("../images/list/s2_ov.gif");
      		ind3ov = newImage("../images/list/s3_ov.gif");
      		ind4ov = newImage("../images/list/s4_ov.gif");
      		ind5ov = newImage("../images/list/s5_ov.gif");
      		preloadFlag = true;
      	}
      }
// example:

// <a href="../../indicator.asp" onmouseover="changeImages('indicator', '../../images/coe_ind_ov.gif'); return true;" onmouseout="changeImages('indicator', '../../images/coe_ind_up.gif'); return true;"><img name="indicator" src="../../images/coe_ind_up.gif" width="95" height="20" border="0" alt="List of Indicators"></a>

// -->