siteLoad = function()
{
	this.siteLoad = this;
	ajaxHtml.call(this);
	
	this.OnSuccess = function()
	{
		var reponse = this.GetResponseText();
		
		if (this.zoneId != null)
			document.getElementById(this.zoneId).innerHTML = reponse;
		
		if (!this.isAdmin)
		{
			loadTitre(this.url);
		}
	}
}
siteLoad.prototype = new ajax();

objSiteLoad = new siteLoad();
