

function showListMovies(albumId, albumName) {

	$("h4",".selectOfMovies").html("Selected set : <span style='color:red'>"+albumName+"</span>")

	$("div.listMovies").hide();
	$("#"+albumId).show();
}

function hideAllMoviesList() {
	$("div.list").hide();
}

function play(type,link,name,content) {
	var html = "<h4>"+name+"</h4>";
	html += "<p>"+content+"</p>";
	document.getElementById("pinkPage").innerHTML = html;
	
	var player ='';
	if (type == "other") {
		player = '<object width="425" height="344"><param name="movie" value="'+link+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+link+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>';
		document.getElementById("player").innerHTML = player;
	}
	else {
		var linkfile = escape(link+'&amp;width=425&amp;height=344&amp;margin=0&amp;showvolume=1&amp;showfullscreen=1');
		player = '<object type="application/x-shockwave-flash" data="../player/player_flv_maxi.swf" width="425" height="344"><param name="movie" value="../player/player_flv_maxi.swf" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="flv='+unescape(linkfile)+'" /></object>';
		
		document.getElementById("player").innerHTML = player;
	}
		
}
