//mouseover button

if (document.images) {
	img1on = new Image();           // The onmouseover image
	img1on.src = "img/view_online_upd.gif";  
	
	img1off = new Image();          // The normally seen image
	img1off.src = "img/view_online_updo.gif"; 
	
  }				  //This function changes the image when over.
    function imgOn(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            }
    }				   //This function changes the image back when off.
    function imgOff(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "off.src");        
            }
    }
    
    
//mouseover button

if (document.images) {
	img2on = new Image();           // The onmouseover image
	img2on.src = "img/moreinfo_updo.gif";  
	
	img2off = new Image();          // The normally seen image
	img2off.src = "img/moreinfo_upd.gif"; 
	
  }				  //This function changes the image when over.
    function imgOn(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            }
    }				   //This function changes the image back when off.
    function imgOff(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "off.src");        
            }
    }

//mouseover button

if (document.images) {
	img3on = new Image();           // The onmouseover image
	img3on.src = "img/viewsamples_updo.gif";  
	
	img3off = new Image();          // The normally seen image
	img3off.src = "img/viewsamples_upd.gif"; 
	
  }				  //This function changes the image when over.
    function imgOn(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            }
    }				   //This function changes the image back when off.
    function imgOff(imgName) {
            if (document.images) {
            document[imgName].src = eval(imgName + "off.src");        
            }
    }
