function prepareChippi(htmlText, width, left){
    if(left==null){
		left=(screen.width-1020)/2;
	}
	if(left<0)
	{
		left=0;
	}	
	return Tip('<div style="position:relative; z-index:1500; top:-5px; left:-5px; height:0px; width:0px;">' +
		'<div style="position:absolute; z-index:1600; height:48px; width:48px;">' +
		'<img src="appimages/clip.gif" height="40px" width="28px">' +
		'</div>' +
		'</div>' +
		'<table border=0 cellpadding=0 cellspacing=0>' +
		'<tr height="4px" style="background:url(appimages/contour-3.gif) repeat-x"><td colspan="3"></td></tr>' +
		'<tr><td width="4px" style="background:url(appimages/contour-4.gif) repeat-y left"></td><td width="4px" bgcolor=#ffff77></td>' +
		'<td width="'+(width-16)+'" valign="middle" align="left" style="font-size:13px; font-weight:normal; font-style:normal; font-family:Arial; background-color:#ffff77">' +
		htmlText +
		'</td><td width="4px" bgcolor=#ffff77></td><td width="4px" style="background:url(appimages/contour-2.gif) repeat-y right"></td></tr>' +
		'<tr height="4px" style="background:url(appimages/contour-1.gif) repeat-x"><td colspan="3"></td></tr>' +
		'</table>', WIDTH,width, FOLLOWMOUSE,false, FADEIN,300, FADEOUT,300, CLICKCLOSE,true, FIX,[left,0], BGCOLOR,'', BORDERWIDTH,0, OPACITY,95);
}
