function EnterContent(TTitle, TContent,height){
if (height ==null) {
	height = '200';
}

ContentInfo = '<table width="' + height + '" border="0" cellspacing="0" cellpadding="1">' +
                '<tr class="toolbar">' +
                  '<td class="border">' +
                    '<table width="100%" border="0" cellspacing="0" cellpadding="0">' +
                      '<tr>' +
                        '<td class="tooltiptitle">&nbsp;' + TTitle + '</td>' +
                      '</tr>' +
                      '<tr>' +
                        '<td class="tooltipcontent">' + TContent + '</td>' +
                      '</tr>' +
                    '</table>' +
                  '</td>' +
                '</tr>' +
              '</table>';

ReplaceContent('ToolTip');			  
			  
	
}
