/*function EnterContent(Titolo, Contenuto) {
	ContentInfo = '<table border="0" width="220" cellspacing="0" cellpadding="0">' +
	'<tr><td width="100%" bgcolor="#17426B">' + '<table border="0" width="100%" cellspacing="1" cellpadding="0">' +
	'<tr><td width="100%" bgcolor=' + topColor + '>' + '<table border="0" width="95%" cellspacing="0" cellpadding="0" align="center">' +
	'<tr><td width="100%">' + '<font class="tooltiptitle">' + Titolo + '</font>' + '</td></tr>' + '</table>' + '</td></tr>' + 
	'<tr><td width="100%" bgcolor=' + subColor + '>' + '<table border="0" width="98%" cellpadding="0" cellspacing="1" align="center">' +
	'<tr><td width="100%" align="justify">' + '<font class="tooltipcontent">' + Contenuto + '</font>' + 
	'</td></tr>' + '</table>' + '</td></tr>' + '</table>' + '</td></tr>' + '</table>';
	ReplaceContent('ToolTip')
}*/
function EnterContent(Titolo, Contenuto, Width) {
	ContentInfo = '<table border="0" width=' + Width + ' cellspacing="0" cellpadding="0">' +
	'<tr><td width="100%" bgcolor="#17426B">' + '<table border="0" width=' + Width + ' cellspacing="1" cellpadding="0">' +
	'<tr><td width="100%" bgcolor=' + topColor + '>' + '<table border="0" width=' + Width + ' cellspacing="0" cellpadding="0" align="center">' +
	'<tr><td width="100%">' + '<font class="tooltiptitle">' + Titolo + '</font>' + '</td></tr>' + '</table>' + '</td></tr>' + 
	'<tr><td width="100%" bgcolor=' + subColor + '>' + '<table border="0" width="98%" cellpadding="0" cellspacing="1" align="center">' +
	'<tr><td width="100%" align="justify">' + '<font class="tooltipcontent">' + Contenuto + '</font>' + 
	'</td></tr>' + '</table>' + '</td></tr>' + '</table>' + '</td></tr>' + '</table>';
	ReplaceContent('ToolTip')
}

