var c=5;  
var t;  

function timedCount() {  
  document.title='';  
  c=c-1;  
  t=setTimeout("timedCount()",1000);  
  if (c==-1) {  
    clearTimeout(t);  
    document.title='';  
    self.location="http://www.fedus.org/galeri/wbd2007-galeri.html";  
  }  
}  

window.onload=timedCount;