<!-- Begin HEADER OPTIONS CODE

// NOTE: If you use a ' add a slash before it like this \'

// ONLY USE lowercase FOR ALL OPTIONS


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON



var showdate		= "yes"			// SHOW THE DATE ON THE PAGE
var dateLR		= "right"		// DATE LEFT OR RIGHT
var dateX		= "140"			// DATE X LOCATION
var dateY		= "50"			// DATE Y LOCATION
var logoLR       = "left"
var logoX        = "140"
var logoY        = "28"

//document.write('<div id="logo-location" style="'+logoLR+': '+logoX+'px; POSITION: absolute; TOP: '+logoY+'px" class="printhide">');
//document.write('<span class=\"date-font2\">');
//document.write('Taylor Made For You </span>');
//document.write('<span class=\"date-font\">');
//document.write('  512 Southlake Blvd.   Richmond, VA 23226   Toll-Free 888.612.GIFT(4338)   Phone: 804.897.8965' )
//document.write('</span></div>');


//document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
//document.write('codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"');
//document.write('ID=logobar WIDTH=350 HEIGHT=20>');
//document.write('<PARAM NAME=movie VALUE="http://www.tmfyonline.com/logobar.swf">');
//document.write('<PARAM NAME=quality VALUE=high>');
//document.write('<PARAM NAME=loop VALUE=false>');
//document.write('<EMBED src="http://www.tmfyonline.com/logobar.swf" loop=false quality=high');
//document.write('WIDTH=350 HEIGHT=20 TYPE="application/x-shockwave-flash"');
//document.write('PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
//document.write('</EMBED>');
//document.write('</OBJECT>');









// START DATE SCRIPT
      if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');

//document.write('<div id="date-location" align="right";  TOP: 20px; POSITION: absolute; class="hilite">');
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('Taylor Made For You 512 Southlake Blvd.  Richmond, VA 23226 Toll-Free 888.612.GIFT(4338) Phone: 804.897.8965' + "    ")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');


}






//  End -->