<!--
/* PostIt af E.D Prod 1998
   etiennedeb@ifrance.com
   http://javascript-lab.nexen.net
*/
LavObj("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='javascript:lukIt()'><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);
 RetObj("postit",pichaine);
 SeObj("postit");
}
function lukIt(){
 SkjulObj("postit");RetObj("postit","");
}
//-->
