//Funcions per controlar el reproductor de musica

//Variables necesaries pel reproductor:
reproduir="si"; //variable per definir si carrega el reproductor inicialment o no


function reprod(tipus,capa)

{
	
	if(tipus==1)
	{
		/*************Reproductor Musica********/
		codirepro='<div style="width:1px;height:1px; right:999999px;"><object width="1" height="1"><param name="movie" value="http://www.deezer.com/embed/player?pid=27906865&ap=1&ln=fr&sl=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="Volume" value="0"> <embed src="http://www.deezer.com/embed/player?pid=27906865&ap=1&ln=fr&sl=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="1" height="1"></embed></object><div id="dz_ref" style="font:0px Arial; color:#FFFFCC;">D&eacute;couvrez <a href="#" target="_blank"></a> de <a href="http://www.deezer.com/fr/user/urpem/" target="_blank"></a></div></div>';
		codirepro2='';
	}
	else if(tipus==2)
	{
		/************Reproductor Video Youtube *******/
		codirepro='<object width="190" height="116"><param name="movie" value="http://www.youtube.com/v/iGOV9sGWooI&hl=es_ES&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/iGOV9sGWooI&hl=es_ES&fs=1&rel=0&autoplay=1&loop=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="190" height="216"></embed></object>';
		codirepro2='<object width="190" height="116"><param name="movie" value="http://www.youtube.com/v/iGOV9sGWooI&hl=es_ES&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/iGOV9sGWooI&hl=es_ES&fs=1&rel=0&loop=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="190" height="216"></embed></object>';
	}


if (reproduir=="no") document.getElementById(capa).innerHTML=codirepro2;
else 
{
	if (document.getElementById(capa).innerHTML!==codirepro)
	{

	document.getElementById(capa).innerHTML=codirepro;
	}
	else
	{document.getElementById(capa).innerHTML=codirepro;}
}


}

function activarmusica() //Funció per activar/desactivar la musica
{
if(reproduir=='si')
{
reproduir='no';
reprod(2,"banner");}
else
{
reproduir='si';
reprod(2,"banner");
}

}