// JavaScript Document




var xmlHttp;



function GetXmlHttpObject()

{

	var xmlHttp=null;

	try

	{

		// Firefox, Opera 8.0+, Safari

		xmlHttp=new XMLHttpRequest();

	}

	catch (e)

	{

	//Internet Explorer

		try

		{

			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");

		}

		catch (e)

		{

			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");

		}

	}

	return xmlHttp;

}


function loadallgames(str,limitstart)
{
	document.getElementById('fullgame_loader').innerHTML='<div style="clear:both; height:320px;" align="center"><img src="http://www.onlinegamesplace.com/images/loading.gif"></div>';
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="http://www.onlinegamesplace.com/ajaxfunctions.php";
	url=url+"?page=allgames&limitstart="+limitstart;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}
	
function stateChanged() 
{ 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{ 
		document.getElementById("fullgame_list").innerHTML=xmlHttp.responseText;
	} 
}

function loadgames_byletter(str,limitstart)
{
	document.getElementById('fullgame_loader').innerHTML='<div style="clear:both; height:320px;" align="center"><img src="http://www.onlinegamesplace.com/images/loading.gif"></div>';
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="http://www.onlinegamesplace.com/ajaxfunctions.php";
	url=url+"?page=allgames_byletter&str="+str+"&limitstart="+limitstart;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

