/*
title=changecolor.js
used to change color of text on mouseover
current colors are green to red on mouseover
insert into <head> follows:

<script type="text/javascript" src="Text/changecolor.js"></script>

sample insert into <body>text follows:

<table class="normal" WIDTH="30%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
  <tr>
    <td WIDTH="100%">
<h4 style="cursor: hand" onMouseOver="changecolor(this,1);" onMouseOut="changecolor(this,0);">
Any text you want to change color to here</h4>
    </td>
  </tr>
</table>


*/

function changecolor(B,X)
{if (X==1){B.style.color='red';} 
 if (X==0){B.style.color='FFFF99';}} 

