function Static(){
	this.DOMObject=document.createElement('DIV');
}
Static.prototype={
	Load: function(file, lang){		
		AjaxEngine.sendGETRequest("ajaxControl.php?action=getStaticContent&file="+file+
			"&lang="+lang, this.static_loader, 0, this);	
	},
	
	static_loader: function(xmlHttp, _this){
		_this.DOMObject.innerHTML=xmlHttp.responseText;	
	}
}

