<!--
//<EDA IGNORE>

// Today's Date Script /////////////////////////////////////////////////////////////////////////
function makeArray() {
     for (i = 0; i<makeArray.arguments.length; i++)
          this[i + 1] = makeArray.arguments[i];
}
 
var months = new makeArray('January','February','March',
    'April','May','June','July','August','September',
    'October','November','December');
 
var date = new Date();
var day  = date.getDate();
var month = date.getMonth() + 1;
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
// End Date Script ////////////////////////////////////////////////////////////////////////////

// MASTER STYLE SHEET
document.write('<LINK REL="STYLESHEET" HREF="scripts/Master_Styles_IE.css" TYPE="text/css">');

// Start BODY tag and Table layouts ///////////////////////////////////////////////////////////

document.write('<body topmargin="0" leftmargin="0" bgcolor="#FFFFFF">');
document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr>');
document.write('<td width="100%" background="images/top-bar.gif"><a href="index.html"><img src="images/tony-logo.gif" width="233" height="60" border="0"></a></td>');
document.write('<td width="225" background="images/top-right.gif" class="topdescription"><img src="images/tony-phone.gif" width="187" height="60" border="0"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td width="100%"><img src="images/spacer.gif" width="50" height="2"></td>');
document.write('<td width="190"><img src="images/spacer.gif" width="50" height="2"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td width="100%" background="images/nav-shadow.gif"><img src="images/spacer.gif" width="50" height="7"></td>');
document.write('<td width="190" background="images/nav-shadow.gif"><img src="images/spacer.gif" width="50" height="7"></td>');
document.write('</tr>');
document.write('</table>');

// BreadCrumb & Today's Date Table ///////////////////////////////////////////////////////////
document.write('<div class="noprint">');
document.write('<TABLE width="100%" align="center">');
document.write('<TR>');
document.write('<TD align="left" valign="top" class="BCtrail">');
document.write('<A HREF="index.html" class="BC">The Law Offices Of Tony Owens</A>');
document.write(myBreadCrumbs);
document.write('</td>');
document.write('<TD align="right" valign="top" class="date">');
// Write Date Function //
document.write(months[month] + " " + day + ", " + year);
document.write('&nbsp;</td>');
document.write('</tr>');

document.write('</table>');
document.write('</div>');
// End BreadCrumb & Date Table /////////////////////////////////////////////////////////////

// Start Main Content Table ////////////////////////////////////////////////////////////////
document.write('<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" width="99%">');
document.write('<tr>');
document.write('<td colspan=6>&nbsp;</td>');
document.write('</tr>');
document.write('<tr><td width="10">&nbsp</td><td width="178" VALIGN="top" >');
document.write('<table BORDER="0" CELLPADDING="0" CELLSPACING="0" width="178">');
document.write('<tr>');
document.write('<td align="left" valign="top" width="178"><a href="contact.html"><IMG SRC="images/submit_case.gif" ALT="" BORDER="0"></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td>');
document.write('<table BORDER="0" CELLPADDING="0" CELLSPACING="0" >');
document.write('<tr>');
document.write('<td width="20">&nbsp;</td>');
document.write('<td class="menu"><br>');
document.write(myMenus);
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</td>');
document.write('</tr>');
document.write('</table></td>');
document.write('<td width="20">&nbsp;</td>');
document.write('<td width="1" bgcolor="#A0A0A0"><img class="noprint" src="/images/1px.gif" height="1" width="1" border="0"></td>');
document.write('<td width="20">&nbsp;</td>');
document.write('<td>');
// It is inside this <TD> where all content is added. It is closed in the Footer. //
// Main Content  ///////////////////////////////////////////////////////////////////////////
//</EDA IGNORE>
//-->
