Pete: borderColor wird nicht übernommen

Beitrag lesen

Hi, ich habe ein Bild:
<img src="images/bold.gif" alt="" onclick="iView.document.execCommand('Bold', false, null);" onmouseover="selOn(this);" onmouseout="selOff(this);" onmousedown="selDown(this);" onmouseup="selUp(this);" />

Bei selOn will ich den Rahmen setzen:

        function selOn(el){  
         el.style.backgroundColor = '#B5BED6';  
         el.style.bordercolor     = '#000000';  
         el.style.cursor          = 'hand';  
        }  
  
        function selOff(el){  
            el.style.backgroundColor = '#D7D7D7';  
        }  
  
        function selDown(el){  
            el.style.backgroundColor = '#8492B5';  
        }  
  
        function selUp(el){  
            el.style.backgroundColor = '#B5BED6';  
        }

Hintergrund und cursor wird übernommen, border nicht. Was mache ich falsch?