if (document.images) {

	var phoenixOn = new Image();
      phoenixOn.src = "../icons4/phoenix_on.gif";
      var phoenixOff = new Image();
      phoenixOff.src = "../icons4/phoenix_off.gif";

}

function changeIn(imageName) {
      if (!document.images) return;
      document.images[imageName].src = eval(imageName + "On.src");
}

function changeOut(imageName) {
      if (!document.images) return;
      document.images[imageName].src = eval(imageName + "Off.src");
}



document.write('<a onmouseover="changeIn(\'phoenix\');" onmouseout="changeOut(\'phoenix\');"a href= "phoenix.htm"><img src="../icons4/phoenix_off.gif" name="phoenix" border=0 width="96" height="28" vspace="1"></a>')

