<!--


function smilie(ubb) 
    { 
    var ubb = " "+ubb+" "; 
      if (document.profiel.bio.createTextRange) 
        { 
          document.profiel.bio.focus(); 
          document.selection.createRange().duplicate().text = ubb; 
           } 
    else 
        { 
          document.profiel.bio.value += ubb; 
           } 
      } 

function bb(openen, sluiten) 
    { 
    comp = navigator.userAgent.toLowerCase(); 
    vers = parseInt(navigator.appVersion); 
    msie = ((comp.indexOf("msie") != -1) && (comp.indexOf("opera") == -1)); 
    nets = ((comp.indexOf('mozilla')!=-1) && (comp.indexOf('spoofer')==-1) && (comp.indexOf('compatible') == -1) && (comp.indexOf('opera')==-1) && (comp.indexOf('webtv')==-1) && (comp.indexOf('hotjava')==-1)); 
    win  = ((comp.indexOf("win")!=-1) || (comp.indexOf("16bit") != -1)); 
     
    if ((vers >= 4) && msie && win) 
        { 
        selectie = document.selection.createRange().text; 
        if (!selectie) 
            { 
            document.profiel.bio.focus(); 
                        document.selection.createRange().duplicate().text = openen + " " + sluiten; 
            return; 
            } 
        else 
            { 
            document.profiel.bio.focus();             
            document.selection.createRange().text = openen + selectie + sluiten; 
            return; 
            } 

} 
    else 
        { 
        document.profiel.bio.value += openen + " " + sluiten; 
        document.profiel.bio.focus(); 

        } 
    } 


// -->



