// Create Page Structure

document.write('<table class="zone0">');

// Display Page Logo/Title

document.write('<tr class="zone1">');
document.write('<td class="head1"><img src="./image/logo2.png" alt="logo2" style="width:102px;  height:82px; margin:0px;" /></td>');
document.write('<td class="head2"><h1>Earth Prospect &amp; Mining Co.</h1></td>');
document.write('</tr>');

// Display Message Bar -->

//var today = new Array("Sun","Mon","Tue","Wed", "Thu","Fri","Sat");
var month = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var dates = new Date();
//document.write('<b>' + today[dates.getDay()] + ', ' + month[dates.getMonth()] + ' ' + dates.getDate() + ', ' + dates.getFullYear() + '</b>');

document.write('<tr class="zone2">');
document.write('<td class="head1"><b>' + month[dates.getMonth()] + ' ' + dates.getDate() + ', ' + dates.getFullYear() +' </b></td>');
document.write('<td class="head2"><b>&quot;Some Of The Finest Things Come From The Earth!&quot;</b></td>');
document.write('</tr>');

