
function finition()
{
plan.moveTo(20,20);

plan.opener.focus() ;
//bede.focus();

if(plan.document.height)
 {
  plan.resizeTo(120,plan.document.height  + 30);
 }
else
 {
  plan.resizeTo(120,600);
 }
}

var chemin = new String(self.location) ;
var plan, bede ;
indice = chemin.lastIndexOf("/") ;

if(navigator.appName == 'Netscape')
 {
  new_chemin = chemin.substring(0,indice) ;
 }
else
 {
  new_chemin = '';
  new_chemin = chemin.substring(0,indice) ;
 }

new_chemin = new_chemin + "/plan.htm" ;
setTimeout("finition()",1000);
plan = open(new_chemin,"plan","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=120,height=320");

// bede = open("/bede.htm","bede","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=500,height=500");

