function PrintDivOverImg_01(width_table,height_table,background,message){
	posizione=(height_table-30)/2;
	var ToPrint = '<table width="'+width_table+'" height="'+height_table+'" border="0" cellspacing="0" cellpadding="0">'+
				  '<tr>'+
				  '<td background="'+background+'" align=\"left\" valign=\"bottom\">'+
						'<div id="viewopacity" style="position: relative; visibility: visible; top: 30px; z-index: 1;">'+
						  '<table width="'+width_table+'" height="30" border="0" cellspacing="0" cellpadding="0">'+
						  '<tr><td>'+
							  '<table bgcolor="#FFFFFF" width="'+width_table+'" height="30" border="0" cellspacing="0" cellpadding="0" class="banner-tableopacity-01">'+
							  	'<tr><td align="left" valign="middle">&nbsp;'+
								'</td></tr>'+
							  '</table>'+
						  '</td></tr>'+
						  '</table>'+
					  '</div>'+
						'<table width="'+width_table+'" height="30" border="0" cellspacing="0" cellpadding="0" class="cell-up-white01">'+
							'<tr><td>'+
								'<font class="testo15-white01"><strong>&nbsp;&nbsp;&nbsp;'+message+'</strong></font>'+
							'</td></tr>'+
						'</table>'+
				  '</td>'+
				  '</tr>'+
				  '</table>';
	document.write(ToPrint);
	}
