<!-- Begin

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


document.write('<span class="copytext">');



document.write('Today is  : ');
var stampdays = new Array( "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var stampmonths = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");
var thedate = new Date();
document.write(stampdays[ thedate.getDay()] + ", " + stampmonths[ thedate.getMonth()] + " " + thedate.getDate() + ", " + thedate.getFullYear());
// -->



//  End -->
