/************************************************************
 * Function	on
 * Purpose	Set image on mouseOver
 * Params	buttonName: name of the button mouse is currently over.
 		x: The index number of the image on the page.
 ***********************************************************/
function on(button,x)
{
buttonName="images/"+button+"_over.gif";
  document.images[x].src=buttonName;
  return true;
}

/************************************************************
 * Function	off
 * Purpose	Set image on mouseOff
 * Params	buttonName: name of the button mouse is currently over.
 		x: The index number of the image on the page.
 ***********************************************************/
function off(button,x)
{
buttonName="images/"+button+".gif";
  document.images[x].src=buttonName;
  return true;
}

function popUp(URL)
{
 myWindow = window.open( URL, "myWindow", "status = 1, height = 300, width = 300, resizable = 0" )
}




