// JavaScript Document
function omLatulippeCachingEngine()
{
	
	this.setXmlRequestSetup = function(pXmlRequestSetup)
	{
		pXmlRequestSetup.Method = "GET";
		pXmlRequestSetup.IsAsync = true;
		pXmlRequestSetup.Request = null;
		pXmlRequestSetup.ForceUtf8 = false;
		pXmlRequestSetup.CharSet = null;
	}
	
	this.affProduitVedette = function(pXmlRequestSetup)
	{
		this.setXmlRequestSetup(pXmlRequestSetup);
		pXmlRequestSetup.ReturnFunction = affProduitVedette_Return;
		pXmlRequestSetup.ErrorFunction = affProduitVedette_Error;
		pXmlRequestSetup.TimeOutFunction = affProduitVedette_Error;
		pXmlRequestSetup.url = "/ajax/accueil/ajax.menu_gauche.asp";
		XmlRequestStandAlone(pXmlRequestSetup);		
	}
	
	this.affListeVedette = function(pXmlRequestSetup)
	{
		this.setXmlRequestSetup(pXmlRequestSetup);
		pXmlRequestSetup.ReturnFunction = affListeVedette_Return;
		pXmlRequestSetup.ErrorFunction = affListeVedette_Error;
		pXmlRequestSetup.TimeOutFunction = affListeVedette_Error;
		pXmlRequestSetup.url = "/ajax/accueil/ajax.listeVedettes.asp";
		XmlRequestStandAlone(pXmlRequestSetup);		
	}
	
	this.affMainPub = function(pXmlRequestSetup)
	{
		this.setXmlRequestSetup(pXmlRequestSetup);
		pXmlRequestSetup.ReturnFunction = affMainPub_Return;
		pXmlRequestSetup.ErrorFunction = affMainPub_Error;
		pXmlRequestSetup.TimeOutFunction = affMainPub_Error;
		pXmlRequestSetup.url = "/ajax/accueil/ajax.main_pub_handler.asp";
		XmlRequestStandAlone(pXmlRequestSetup);		
	}	
	
	
	this.affVideos = function(pXmlRequestSetup)
	{
		this.setXmlRequestSetup(pXmlRequestSetup);
		pXmlRequestSetup.ReturnFunction = affVideos_Return;
		pXmlRequestSetup.ErrorFunction = affVideos_Error;
		pXmlRequestSetup.TimeOutFunction = affVideos_Error;
		pXmlRequestSetup.url = "/ajax/accueil/ajax.videos.asp";
		XmlRequestStandAlone(pXmlRequestSetup);		
	}
}
var latulippeCachingEngine = new omLatulippeCachingEngine();


