function makeTitle(TitleName)
{
document.writeln('<html><body><center>');
document.writeln('<table border=0 cellspacing=0 cellpadding=0 width=100%>');
document.writeln('<tr><td><br>');
document.writeln('<div style=\"font-weight: bold; font-size: 14pt; color: #000090; text-align: center; margin-bottom:1px; margin-top:1px;\">'+TitleName+'</div></td>');
document.writeln('</tr></table></center>');
document.writeln('</body></html>');
}

function makeDiv(divName)
{
document.writeln('<html><body><center>');
document.writeln('<table border=0 cellspacing=0 cellpadding=0 width=85%>');
document.writeln('<tr><td width=100%>');
document.writeln('<div style=\"font-weight: bold; font-size: 9pt; color: #000090; text-align: left; margin-left:8px;\">'+divName+'</div></td>');
document.writeln('</tr></table></center>');
document.writeln('</body></html>');
}
