function btnRollOver(str)
{
     var e = str
     var s = new String(e.getAttribute('src'));
     s = s.replace('off.','on.');
     e.setAttribute('src',s.valueOf());
}

function btnRollOut(str)
{
     var e = str
     var s = new String(e.getAttribute('src'));
     s = s.replace('on.','off.');
     e.setAttribute('src',s.valueOf());
}