﻿// to use these, try doing this on the actual submit button's events:
// onMouseOut="goD(this.form.name,this.name)" 
// onMouseOver="goL(this.form.name,this.name)"

function goD(BTN)
{

button = document.getElementById(BTN)
button.style.color = "#000000";
button.style.backgroundColor = "#FFFFFF";

  
}

function goL(BTN)
{
button = document.getElementById(BTN)
button.style.color = "#FFFFFF";
button.style.backgroundColor = "#000000";


  
}
