function generateContent()
{
	var result="";
	result+="<h3>JavaScript Games</h3>";
	result+="<p>Somewhere in the early part of 2007, I decided that I didn't like \"traditional\" game programming languages or APIs/SDKs anymore.</p>";
	result+="<p>As a game maker, I wanted to return to a more free-form development, like when I was first programming twenty years ago in BASIC.</p>";
	result+="<p>Quite frankly, I had grown tired of strongly typed languages.  I don't need ints, floats, doubles, shorts, bytes, words, and so on.  A simple Number type will do.</p>";
	result+="<p>So, I moved to JavaScript, and started writing some games in it.  Mostly, I worked on simple \"Guess My Number\" type games (the first few entries in the ill-fated MakeDeez Games project).</p>";
	result+="<p>And then I wrote Pipes.</p>";
	result+="<p>Hopefully, this is the start of a new trend and a new wave of games for me.  Time will tell, as usual.</p>";
	result+=generateRurlBox("akg");
	result+=generateWikiLink("JavaScriptGames");
result+="<iframe style=\"visibility:hidden;\" src=\"http://www.playdeez.com/hitcounter.php?HitPage=jsgames.html\"></iframe>";
	return(result);
}
document.getElementById("pagecontent").innerHTML=generateContent();
document.title="JavaScript Games";
