// ********************************************************
// *** Copyright (C) 2000,2001 Thomas F. Hassett        ***
// ***               All Rights Reserved                ***
// ***               Integration Synthesis Research ISR ***
// ********************************************************
// ***            IMAGE ROLLOVER FUNCTIONS              ***
// ********************************************************
// *** File: imgrollover.js                             ***
// *** Function: This file contains scripts functions   ***
// ***           that allow one to execute a "single    ***
// ***           rollover".  When you rollover a image  ***
// ***           it changes.  The other two functions   ***
// ***           allow one to rollover one image, have  ***
// ***           that one change as well as another one ***
// ***           on the page.  These are plug and play, ***
// ***           there is no need to edit these.        ***
// *** NOTE: Go to the bottom of the page to add in     ***
// ***       the images to be "pre_loaded" into the     ***
// ***       browsers memory cache.                     ***
// *** Function Names:                                  ***
// ***        msover1 & msout1=single image rollover    ***
// ***        msover2 & msout2=dual image rollovers     ***
// *** NOTE: All you have to do is reference the images ***
// ***       as noted below and your on your way.       ***
// *** NOTE: HTML code for futher documentation         ***
// *** Language: Javascript                             ***
// *** Use: Insert Into <HEAD> ... </HEAD> Of HTML File ***
// ***      <SCRIPT LANGUAGE="Javascript"               ***
// ***                        SRC="imgrollover.js">     ***
// ********************************************************
function msover(img,ref)
// Function: Image Display Mouse Over
// Call Sequence: msover(img,ref)
// Variables:
//     Input:
//       img=image designator
//       ref=specific image (.gif or .jpg)
 {
  roll='true';
  if (roll == 'true')
   {
    document.images[img].src = ref;
   }
 }
        
function msout(img,ref)
// Function: Image Display Mouse Out
// Call Sequence: msout(img,ref)
// Variables:
//     Input:
//       img=image designator
//       ref=specific image (.gif or .jpg)
 {
  roll='true';
  if (roll == 'true')
   {
    document.images[img].src = ref;
   }
 }

function changeimage1(id,image)
// Function: Image Display Mouse Up (Down)
// Call Sequence: changeimage(id,image)
// Variables:
//     Input:
//       id=image designator
//       image=specific image (.gif or .jpg)
 {
   document.images[id].src = image;
 }