

var chambervoicehtml = [
		'<table cellpadding=0 cellspacing=0 width=105% border=0>',
		'<tr>',
		'<td width=100% align=right colspan=2 style=\"border: 1px solid #cc8822; background-color: silver;\">',
		'</td>',
		'</tr>',
		'<tr>',
		'<td colspan=2 align=center style=\"height: 40px; line-height: 40px; font: bold 13px Verdana; color: black;\" valign=center>',
		'View our issues online',
		'</td>',
		'</tr>',
		'</tr>',
		'</table>'
		];


function
renderchambervoice()
{
	for(var i = 0; i < chambervoicehtml.length; i++)
	{
		document.write(chambervoicehtml[i]);	
	}	
	
}


