// JavaScript Document
//messages: change to your own; use as many as you'd like; set up Hyperlinks to URLs as you normally do: <a target=... href="... URL ...">..message..</a>

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
today =         date + " " +  
			months[now.getMonth()] + " " +
                (fourdigits(now.getYear())) ;

var singletext=new Array() 
singletext[0]='<b><script language="JavaScript" type="text/javascript">document.write("" +today+ "");</script></b><br><br><div align="center"><b>Welcome to TheTimeGenie.com</b><br>The Automated Timesheet and Invoicing Service.</div>'

singletext[1]='<div align="center">You can now enter you timesheet data via <strong>two</strong> great  ways.<br><br><strong>The Web:</strong><br /> <img src="Images/www.gif" width="58" height="43" /><br><br><strong>SMS:</strong><br /><img src="Images/sms.gif" width="58" height="46" /><br><br>Click <a href="info.aspx">HERE</a> for more information</div>'

singletext[2]='<div align="center">Your first contract is FREE.<br><br>You will not be charged for this contract for its full duration, click <a href="reg.aspx">HERE</a> to register online.</div>'

singletext[3]='<div align="center"><strong>NEW...<br><br>Feed Files, now available on demand.</strong><br><img src="Images/ticker_qb.gif" width="66" height="51" /><br><img src="Images/ticker_safe.gif" width="39" height="59" /><br><img src="Images/ticker_sage.gif" width="72" height="29" /><br><img src="Images/ticker_tempaid.gif" width="90" height="30" /></div>'

singletext[4]='<div align="center">If you would like further information, please click <a href="info.aspx">HERE</a>.<br><br>To register, click <a href="reg.aspx">HERE</a>.<br><br>If you would like to comment on our service, please click <a href="contact.aspx">HERE</a>. </div>'

