// JavaScript Document
var orgnumber = '104';
var orgwords = '104';
var dateday = '22';
var datemonth = 'July';
var date = datemonth+' '+dateday;
var update = dateday+' '+datemonth+' 2010';

//writes the number # of organizations
function writeorgnum(){
	document.write(orgnumber);
}

//writes the number (words) of organizations
function writeorgwords() {
	document.write(orgwords);
}

//writes the 'as of' date
function writedate() {
	document.write(date);
}

//writes the site design and updated line
function showupdate(){
document.write('<p style="padding-left: 5px; padding-right: 20px;"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#999999">Site Design by <a href="mailto:jeffrey@jeffreylancaster.com" target="_self" style="text-decoration:none; color:#555555;">Jeffrey Lancaster</a><br>last updated '+update+'</font></p>');
}
