<!--

          if (document.images) { //conditional statement for sipport of document.images 
            var img1off = new Image();//preloading of images
            img1off.src = "images_p/01-ispot-link.gif";
            var img1on = new Image();
            img1on.src = "images_p/01-ispot-roll.gif";
            var img2off = new Image();
            img2off.src = "images_p/01-pass.gif";
            var img2on = new Image();
            img2on.src = "images_p/01-pass_roll.gif";
            var img3off = new Image();
            img3off.src = "images_p/01-help.gif";
            var img3on = new Image();
            img3on.src = "images_p/01-help_roll.gif";
            var img4off = new Image();
            img4off.src = "images_p/01-full.gif";
            var img4on = new Image();
            img4on.src = "images_p/01-full_roll.gif";
            var img5off = new Image();
            img5off.src = "images_p/01-pause.gif";
            var img5on = new Image();
            img5on.src = "images_p/01-pause_roll.gif";
            var img6off = new Image();
            img6off.src = "images_p/01-play.gif";
            var img6on = new Image();
            img6on.src = "images_p/01-play_roll.gif";
			
			img1ad = new Image();         
        img1ad.src = "images_p/01-text-ispotlink.gif";  // Secondary Images
        img2ad = new Image();
        img2ad.src = "images_p/01-text-bypass.gif";  
        img3ad = new Image();         
        img3ad.src = "images_p/01-text-help.gif";  
        img4ad = new Image();
        img4ad.src = "images_p/01-text-full.gif";  
        img5ad = new Image();
        img5ad.src = "images_p/01-text-pause.gif";  
        img6ad = new Image();
        img6ad.src = "images_p/01-text-play.gif";
        }
		 
		  
          function act(imgName) {
            if (document.images) 
              document[imgName].src = eval(imgName + "on.src");
			  document["holder4"].src = eval(imgName + "ad.src"); // Added image
          }

          function inact(imgName) {
            if (document.images)
              document[imgName].src = eval(imgName + "off.src");
			  document["holder4"].src = "images_p/01-text-bg.gif";
          }

          // -->
