function changeBackground(mouseOver) 
{
    if(mouseOver==true)
    {
		document.getElementById("registrationRow").style.background='#333333';
    }
    else
    {
		document.getElementById("registrationRow").style.background='#ffffff';    
    }
}