// 				Copyright 2002, Bob Parnass
//
// This JavaScript script displays the web site logo
// along the top edge of web pages.

function Logo()
{

	document.write('<TABLE width="100%" border=0 cellpadding=2 \
		cellspacing=0>');

	document.write('<TR>');
	document.write('<TD align=left valign=center width="20%" ');
	document.write(' class="Logo">');

	document.write('<h1><i><font color=red>');
	document.write('Robert S. Parnass, MS');
	document.write('</font></i></h1>');

	document.write('</TD>');
	document.write('</TR>');
	document.write('</TABLE>');

	// Colored horizontal bar along bottom of logo.
	document.write('<TABLE width="100%" border=0 cellpadding=2 \
		cellspacing=0>');
	document.write('<tr><td bgcolor=#C0CCEE> \
		<font size=1em> \
		&nbsp;</td></tr> \
		</font>');
	document.write('</TABLE>');

	return;
}
