<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'



var color		= "faea7b"	// HEADER BACKGROUND COLOR

var showdate	= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "52"		// DATE Y LOCATION



document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%" bgcolor="#'+color+'"><tr>');
document.write('<td ALIGN="LEFT">');
document.write('<a href="index.htm"><img src="images/logo2.gif" border="0"></a><br>');
document.write('</td></tr></table>');



// START DATE SCRIPT
   if (showdate == "yes") {


document.write('<div id="date-location" style="left: '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
document.write("<span class=\"date-font\"><nobr>Email: <a href=\"mailto:terrell@hoosierlawyer.us\">terrell@hoosierlawyer.us</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Phone: (317) 856-8702&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Fax: (317) 856-8762")
document.write("</nobr></span>")
document.write('</div>');


document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}




//  End -->