CreerObj("postit",0,0,240,240,1,10,"","",0);

function postit(xo,yo,texte){
 var pichaine="<table border=0 cellpading=0 width=240 height=240><tr><td align=center valign=middle background='postit.gif'><font color=#000000 size=2 face=verdana><B>"+texte+"</B></font></TD></TR></TABLE><DIV id='close' style='position:absolute;top:10px;left:100px;width:16px;height:16px;'><A HREF='#' onclick='javascript:fermeIt()'><img src='punaise.gif' border=0></A></DIV><BR>"
 if (xo==-1){xo=(TailleX()/2)-120;}
 if (yo==-1){yo=(TailleY()/2)-120;}
 PlacerObj("postit",xo,yo);
 ModifierObj("postit",pichaine);
 VoirObj("postit");
}

function fermeIt(){
 CacherObj("postit");ModifierObj("postit","");
}

