﻿
<!-- // 

function returnObjById( id ) 
{ 
    if (document.getElementById) 
        var returnVar = document.getElementById(id); 
    else if (document.all) 
        var returnVar = document.all[id]; 
    else if (document.layers) 
        var returnVar = document.layers[id]; 
    return returnVar; 
}

function rollIn(thebutton, color) {
    bgColor = color;
   // bgColor = '#e0e0e0';
    thebutton.style.backgroundColor = bgColor;
}

function rollOut(thebutton, color) {
    bgColor = color;
   // bgColor = '#f7f7f7';
    thebutton.style.backgroundColor = bgColor;
} 

// -->

