/*
	* 18/01/2007 02:37am
	* js/fr/page137.js
*/
var uriBase = document.getElementById('urlIdentifier').content;

function youtubeGetProfile (log) {

	/* addresse du webservice sur le serveur */  
  uri = uriBase+'ajax/fr/page137.php5';
	new Ajax.Updater('test_0',uri, { 
		parameters : 'log='+log , 
		method : 'post' ,
		/*onComplete : function (el) { alert(el.responseText); }*/
		} 
	);

}

function youtubeListByTag (tag0) {

	/* addresse du webservice sur le serveur */  
  uri = uriBase+'ajax/fr/page137bis.php5';
	new Ajax.Updater('test_1',uri, { 
		parameters : 'tag0='+tag0 ,
		method : 'post' ,
		/*onComplete : function (el) { alert(el.responseText); }*/
		} 
	);

}

function youtubeListFeatured (mode,nbVid,miniLarg) {

	/* addresse du webservice sur le serveur */  
  uri = uriBase+'ajax/fr/page137ter.php5';
	new Ajax.Updater('test_2',uri, { 
		parameters : 'mode='+mode+'&nbVid='+nbVid+'&miniLarg='+miniLarg ,
		method : 'post' ,
		/*onComplete : function (el) { alert(el.responseText); }*/
		} 
	);

}
