function playRadio(){
		var xvolume = document.getElementById("dv_volume").innerHTML;
		var player_monta = '<OBJECT ID="mediaplayer1" name="mediaplayer1" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"type="application/x-oleobject" width=100 height=10><PARAM NAME="FileName" VALUE="http://radiobahiafest.blogdns.org:8023"><PARAM NAME="animationatStart" VALUE="TRUE"><PARAM NAME="transparentatStart" VALUE="FALSE"><PARAM NAME="autoStart" VALUE="true"><PARAM NAME="autoSize" VALUE="false"><PARAM NAME="showStatusBar" VALUE="false"><PARAM NAME="showControls" VALUE="false"><PARAM NAME="showDisplay" VALUE="false"><param name="Volume" value="'+xvolume+'"><EMBED id="mediaplayer1" name="mediaplayer1" type="application/x-mplayer2" pluginspage="mms://www.microsoft.com/windows/windowsmedia/intl/download/default.asp?DispLang=br" SRC="http://radiobahiafest.blogdns.org:8023" Start="true" showControls="false" showDisplay="false" width="100" height="10" volume="'+xvolume+'"></EMBED></OBJECT>';
		document.getElementById("dv_player_som").innerHTML = player_monta;
		}

function stopRadio(){
		document.getElementById("dv_player_som").innerHTML = ' ';
		}
		
function volumeMenos(){
		var xvolume = document.getElementById("dv_volume").innerHTML;
		if (xvolume>=-21800){
			xvolume = xvolume-200;
			}
		document.getElementById("dv_volume").innerHTML = xvolume;
		playRadio();
		}	
function volumeMais(){
		var xvolume = document.getElementById("dv_volume").innerHTML;
		if (xvolume<=-200){
			xvolume = parseInt(xvolume)+200;
			}
		document.getElementById("dv_volume").innerHTML = xvolume;
		playRadio();
		}	