window.defaultStatus = "[:::didiers::interface:::]";

function exchangeDisplay(id){

 var img = 'img_' + id;
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
  document.getElementById(img).src = 'opened.png';
 }
 else
 {
  document.getElementById(id).style.display = 'none';
  document.getElementById(img).src = 'closed.png';
 }

}

function BlurLinks(){ // >> tutors/javascript/blur.links

 lnks=document.getElementsByTagName('a');
 for(i=0;i<lnks.length;i++){
 lnks[i].onfocus=new Function("this.blur()");
 }

}

onload=BlurLinks;
