//header
function header(sTitle, Banner){
 //********* HTML Starters
  document.write('<html><head><title>' + sTitle + '</title>');
  
  
  document.write('<style>\nh1{color:purple}\nh2{color:blue}\n' +
				'h3{color:green}\n</style>\n');
  
  document.write('</head>' +
        '<body background="../images/ThemeBackground.jpg" ' +
	      'text="black" style="font-family: Trebuchet MS, Arial, Helvetica" ' +
	      'link="blue" vlink="green" alink="#FF9900">');


  //********* Body Table Start
  document.write('<table border="0" width ="600"><tr>' +
        '<td style="text-indent: 1.0in">&nbsp;</td>' +
        '<td valign="top"><br>');
}

//************************************************************************************//
//footer

function footer(){
  /*var Today = new Date();
  var iYear = Today.getYear();

  if (iYear < 1900) iYear += 1900;*/
  
  document.write('</td></tr></table>');
}

//************************************************************************************//

//Miscellaneous code
//************************************************************************************//
function LineSep(){
  document.write('<br><img src="../_themes/blends/blesepd.gif" width="600" height="10"><br>');
}
