function play_choix(aid,sid,multiple)
	{
		if (multiple) 
		{
			var temp=0;
			var tempstr=new Array();
			for(var i=0;i<document.frmbody.length && temp < 15;i++)
				{
					if(document.frmbody.elements[i].type=="checkbox" && document.frmbody.elements[i].checked)
					{
						tempstr[temp]=document.frmbody.elements[i].value;
						temp++;
					}
				}
		
			var sid="";	
			sid = tempstr.join("_");
			
			if(tempstr.length>0)
			{
			    theURL= 'http://www.zdoooh.com/ecouter.php?cid='+ aid + '&playlist='+ sid + '' ;
				window.open(theURL,'Play','location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=650px,height=430px')
			}
		    else
			{
				alert("Veuillez choisir au moins une chanson parmi la liste");
				return;
			}
			
			
		}
		else
		{
     theURL= 'http://www.zdoooh.com/ecouter.php?playlist='+ sid + '' ;
     window.open(theURL,'','location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=650px,height=430px')
		}
	}


function play(sid) 
   { 
    theURL= 'http://www.zdoooh.com/ecouter.php?playlist='+ sid + '' ;
				window.open(theURL,'','location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=650px,height=400px')
   }

function download(sid) 
   { 
    theURL= 'http://www.zdoooh.com/download.php?id='+ sid +'' ;
				window.open(theURL,'','location=no,status=yes,menubar=no,scrollbars=no,resizable=no,width=650px,height=400px')
   }
