function displayHeader () {
 with(document){
 write('<title>AggRead</title>');
 write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />');
 write('<meta Name="keywords" Content="RSS RDF ATOM XML Blog News Newsreader Ticker Headlines " />');
 write('<meta Name="description" Content="Simple, Powerful RSS News Reader with built-in News Ticker " />');
 close()
 }
} 

function displayTop () {
 with(document){
 write('<a name="top">');
 write('<table class="mainheader" border="0" cellspacing="0" cellpadding="5" width="100%"><!-- -->');
 write('<tr> <!-- site is single row in main table with two columns -->');
 write('<td class="vert_nav"> <!-- first column is for left side navigation -->');
// write('<img name="logo" src="images/gtlogob.gif" />');
 write('<!-- left vertical bar -->');
 write('</td>');
 write('<td class="main_content" valign="top"> <!-- second column is for main content -->');
 write('<div align="justify" class="content">');
 write('<!-- page content -->');
 close()
 }
}

function displayTopic (colspan, topic) {
 with(document){
 write(' <tr valign="top"> <!-- topic row -->');
 write('  <th colspan="'+colspan+'" class="heading">'+topic+'<!-- topic --></th>');
 write(' </tr>');
 close()
 }
}

function displaySubTopic (colspan, topic, reference) {
 with(document){
 write(' <tr valign="top"> <!-- topic row -->');
 write('  <th colspan="'+colspan+'" class="heading2"><a name="'+reference+'"></a>'+topic+'<!-- topic --></th>');
 write(' </tr>');
 close()
 }
}

function displayTwoColumn (colspan1, colspan2, content1, content2) {
 with(document){
 write(' <tr valign="top">');
 write('  <td colspan="'+colspan1+'">');
 write(content1+'<!-- left cell -->');
 write('  </td>');
 write('  <td colspan="'+colspan2+'">');
 write(content2+'<!-- right cell -->');
 write('  </td>');
 write(' </tr>');
 close()
 }
}
	   
function displayThreeColumn (colspan1, colspan2, colspan3, content1, content2, content3) {
 with(document){
 write(' <tr valign="top">');
 write('  <td colspan="'+colspan1+'">');
 write(content1+'<!-- left cell -->');
 write('  </td>');
 write('  <td colspan="'+colspan2+'">');
 write(content2+'<!-- center cell -->');
 write('  </td>');
 write('  <td colspan="'+colspan3+'">');
 write(content3+'<!-- right cell -->');
 write('  </td>');
 write(' </tr>');
 close()
 }
}

function displayTableStart () {
 with(document) {     
 write('<table width="85%" cellpadding="7">');
 close()
 }
}

function displayIndexTableStart () {
 with(document) {     
 write('<table width="85%" cellpadding="7" class="indexpage" name="indextable">');
 close()
 }
}

function displayTableEnd () {
 with(document) {     
 write('</table>');
 close()
 }
}

function displayBottom () {
 with(document){
 write('<!-- end page content -->');
 write('</div>');
 write('</td>');
 write('</tr>');
 write('<tr>');
 write('<td>');
 write('</td>');
 write('<td>');
 write('<div align="justify" class="footer">');
 write('<!-- footer content -->');
 write('<hr />');
 write('Site Design &copy; <a href="http://www.gttech.com">GT Technologies</a>&nbsp;&nbsp; 1995 - 2005&nbsp;&nbsp;&nbsp;');
 write('<!-- end footer content -->');
 write('</div>');
 write('</td>');
 write('</tr>');
 write('</table> <!-- end Site Table -->');
 close()
 }
}

function showShot(theURL, theSize) 
{ 
 var _W=window.open(theURL, "theName", theSize);
     _W.focus();
} 

