var updateList =
[
	{
		"when": "2010FEB16",
		"what": "HamQuest Updated to Version 1.1.0.2",
		"where": "http://www.playdeez.com/hamquest.html"
	},
	{
		"when": "2010FEB07",
		"what": "HamQuest Updated to Version 1.1.0.1",
		"where": "http://www.playdeez.com/hamquest.html"
	},
	{
		"when": "2010FEB07",
		"what": "Silverlight JetLag Added",
		"where": "http://www.playdeez.com/sljetlag.html"
	},
	{
		"when": "2010JAN30",
		"what": "HamQuest Updated to Version 1.1.0.0",
		"where": "http://www.playdeez.com/hamquest.html"
	}
];
function generateUpdateList()
{
	var result="";
	result+="<h3>Recent Additions/Updates:</h3>";
	for(var index=0;index<updateList.length;++index)
	{
		result+="<p>"+updateList[index].when+" - <a href=\""+updateList[index].where+"\">"+updateList[index].what+"</a></p>";
	}
	return(result);
}
function generateContent()
{
	var result="";
	result+="<h3>Welcome to PlayDeez Games!</h1>";
	result+="<p><i>Wasting your time since July 2004!</i></p>";
	result+="<div id=\"updateList\"></div>";
	result+="<h3>What is PlayDeez.com?</h3>";
	result+="<p>In 2004, I decided to make a website, make some games for it, sell those games, and make some money doing so.</p>";
	result+="<p>This many years later, the website has mainly served as a repository for my little games.  Sure, there have been and are regular visitors, but this site isn't going to make me wealthy, and in fact has only managed to cost me the hosting fees</p>";
	result+="<p>But that's OK.</p>";
	result+="<p>I like making little games. I like that others enjoy playing them, and so I provide them here. No, there are no really high end 3D games.  Most are of the simple puzzle-ish variety.  However, more than a few people have sunk innumerable hours into them, with nothing really to show for their time.</p>";
	result+="<p>That's OK too.</p>";
	result+="<p>PlayDeez.com also serves as a record for my growth as a developer over the years. Languages and APIs change, the developer grows (so he hopes).</p>";
	result+="<p>So have a look around, and I hope you find something you like.  If not, that's OK as well.</p>";
	result+=generateRurlBox("ahf");
	result+=generateWikiLink("FrontPage");
result+="<iframe style=\"visibility:hidden;\" src=\"http://www.playdeez.com/hitcounter.php?HitPage=default.html\"></iframe>";
	return(result);
}
document.getElementById("pagecontent").innerHTML=generateContent();
document.title="Welcome to PlayDeez.com!";
document.getElementById("updateList").innerHTML=generateUpdateList();