function Ptip( titre , contenu )
{
/*
http://www.walterzorn.com/tooltip/tooltip_e.htm#features

CLOSEBTNCOLORS

1. Background color
2. Text color
3. Highlighted background, while the button is being hovered
4. Hilighted text color, while the button is being hovered 

Example:
Tip('Text', CLOSEBTN, true, CLOSEBTNCOLORS, ['', '#66ff66', 'white', '#00cc00'], STICKY, true) 



<a href="index.htm" onmouseover="Tip('Some text')" onmouseout="UnTip()">Homepage </a>

*/

	Tip(contenu , TITLE , titre , TITLEBGCOLOR , '#6793C1' , BORDERCOLOR , '#6793C1' , CLOSEBTN, true, STICKY, true , WIDTH , 350 , BGCOLOR , '#E6E6E6' , FONTCOLOR , 'black' , TITLEFONTFACE , 'Arial', CLOSEBTNCOLORS, ['white', '#6793C1', '#B6CBE2', 'white']);

}
function Ptip3()
{
	Tip('document non available', BORDERCOLOR , '#FFFFFF' , BGCOLOR , '#1D1D1D' , FONTCOLOR , '#B3C4EC' , TITLEFONTFACE , 'Arial');
}