function colorTable(){
	document.write("<tr>")
	document.write("<td width='25%' bgcolor='#000033'>")
	document.write("<font color='#FFFFFF'>Dark</font><br>")
	document.write("<hr>")
	document.write("<font color='#000033'>Dark</font><br>")
	document.write("<font color='#666699'>Med. Dark</font><br>")
	document.write("<font color='#9999CC'>Med. Light</font><br>")
	document.write("<font color='#CCCCFF'>Light</font><br>")
	document.write("</td>")
	document.write("<td width='25%' bgcolor='#666699'>")
	document.write("<font color='#FFFFFF'>Med. Dark</font><br>")
	document.write("<hr>")
	document.write("<font color='#000033'>Dark</font><br>")
	document.write("<font color='#666699'>Med. Dark</font><br>")
	document.write("<font color='#9999CC'>Med. Light</font><br>")
	document.write("<font color='#CCCCFF'>Light</font><br>")
	document.write("</td>")
	document.write("<td width='25%' bgcolor='#9999CC'>")
	document.write("Med. Light<br>")
	document.write("<hr>")
	document.write("<font color='#000033'>Dark</font><br>")
	document.write("<font color='#666699'>Med. Dark</font><br>")
	document.write("<font color='#9999CC'>Med. Light</font><br>")
	document.write("<font color='#CCCCFF'>Light</font><br>")
	document.write("</td>")
	document.write("<td width='25%' bgcolor='#CCCCFF'>")
	document.write("Light<br>")
	document.write("<hr>")
	document.write("<font color='#000033'>Dark</font><br>")
	document.write("<font color='#666699'>Med. Dark</font><br>")
	document.write("<font color='#9999CC'>Med. Light</font><br>")
	document.write("<font color='#CCCCFF'>Light</font><br>")
	document.write("</td>")
	document.write("</tr>")
}

function contact(){
	document.write("<p><b>Company</b><br>")
	document.write("1234 Somewhere St.<br>")
	document.write("Anytown, USA 123456<br></p>")
	document.write("<p>Phone: 555.555.5555<br>")
	document.write("Fax: 555.555.5555<br>")
	document.write("Email: <a href='mailto:info@company.com'>info@company.com</a></p>")
}

function getFullDate(){
	var weekDays = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
	var months = new Array("January", "February", "March", "April", "May", "June", 
		"July", "August", "September", "October", "November", "December");
	var today = new Date();
	var day	= today.getDay();
	var dayName = weekDays[day];
	var month = today.getMonth();
	var monthName = months[month];
	var date = today.getDate();
	var year = today.getYear();
	


	document.write(dayName + ", " + monthName + " " + date + ", " + year);
		
}// end getFullDate()