<!--
/* PostIt par E.D Prod 1998
   etiennedeb@ifrance.com
   http://javascript.lab.cc
*/
CreerObj("postit",0,0,240,240,1,10,"","",0);
var ScreenLarg;
var ScreenMid;

function postit(xo,yo,texte){
 xo=SourisX();
 yo=SourisY()+13;
 var pichaine="<table border='1'  bordercolor='#ffffee'  cellspacing='0' cellpadding='2' bgcolor='#FFFFCC'>  <tr>    <td>      <p align='center'><font color='#000000'>"+texte+"</font></td>  </tr></table>"
 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","");
}
//-->


function postit2(xo,yo,texte){
 var pichaine="<table border='1'  bordercolor='#ffffee'  cellspacing='0' cellpadding='2' bgcolor='#FFFFCC'>  <tr>    <td>      <p align='center'><font color='#000000'>"+texte+"</font></td>  </tr></table>"
 if (xo==-1){xo=(TailleX()/2)-120;}
 if (yo==-1){yo=(TailleY()/2)-120;}
 PlacerObj("postit",xo,yo);
 ModifierObj("postit",pichaine);
 VoirObj("postit");
}


function PostMidScreen(texte)
{	
	ScreenMid=(TailleX()/2)-120;
	postit2(ScreenMid,300,texte);

}


function postit3(texte){
 postit2(3,3,texte);

}
