        function openEmailWindow() { 
          urlStatement = 'http://www.eyeoncredit.com/email-list/index.html';
          window.open(urlStatement,'AddEmailWindow','toolbar=no, status=yes, width=345, height=280 resizable=yes,scrollbars=yes,top=100,left=200');
        }

 function mOvr(src,clrOver) { 
    if (!src.contains(event.fromElement)){
       src.style.cursor = 'hand'; src.bgColor = clrOver; 
    }
 }

 function mOut(src,clrIn) { 
    if (!src.contains(event.toElement)){
       src.style.cursor = 'default'; 
       src.bgColor = clrIn; 
    }
 } 
 
 function mClk(src) { 
    if(event.srcElement.tagName=='TD'){
      src.children.tags('A')[0].click();
    }
 }

   var roll;
   browser_name = navigator.appName;
   browser_version = parseFloat(navigator.appVersion);

   if (browser_name == "Netscape" && browser_version >= 4.0){
     roll = 'true';
   }
   else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0){
     roll = 'true';
   }
   else{
     roll = 'false';
   }

   function swapImage(theImage, theSrc){
     var objStr,obj;
     // Check to make sure that images are supported in the DOM.
     if(document.images && roll=='true'){
        // Check to see whether you are using a name, number, or object
        if (typeof(theImage) == 'string') {
          // This whole objStr nonesense is here solely to gain compatability
          // with ie3 for the mac.
          objStr = 'document.' + theImage;
          obj = eval(objStr);
          obj.src =  theSrc;
        } 
        else if ((typeof(theImage) == 'object') && theImage && theImage.src) {
          theImage.src =  theSrc;
        }
     }
   }

