/*

*/

	function sendEvent( _id , typ , prm) {
	
		thisMovie( _id ).sendEvent(typ , prm);
		
	};
	
	function playpause( _id, _button) {

		_button = document.getElementById(_button);

		if( /play-bt/.test(_button.src) ) {
			_button.src = 'img/toolbar/pause-bt.gif';
		} else {
			_button.src = 'img/toolbar/play-bt.gif';
		}

		thisMovie( _id ).sendEvent("playpause");
	}

	function thisMovie(movieName) {
	
	    if(navigator.appName.indexOf("Microsoft") != -1) {
			return window[movieName];
		} else {
			return document[movieName];
		}
		
	};
	
	function itemData(obj) {
	
		for(var i in obj) {
			if( i == "title" )
				_text = obj[i];
		}
		document.getElementById("titre_slideshow").innerHTML = _text;
		
	};