function changeSong(songID,songTitle,pWidth){

 //var playerURL='http://player.soundcloud.com/player.swf?url=http://api.soundcloud.com/tracks/';
// var url=playerURL+songID+'&show_comments=true&auto_play=false&color=001cff';

 //var p= document.getElementById('cloudPlayer');

var pc=document.getElementById('playerContent');

if(!pWidth){
var pWidth=400; var pHeight=81;
var nowPlaying = 'Now Playing: ';
}

else {
 var pHeight=81;
 var nowPlaying ='';
}

pc.innerHTML='<object height="' + pHeight +'" width="'+pWidth+'"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http://api.soundcloud.com/tracks/'+songID+'&show_comments=true&auto_play=true&color=001cff"></param><param name="allowscriptaccess" value="always"></param><embed allowscriptaccess="always" height="' + pHeight + '" src="http://player.soundcloud.com/player.swf?url=http://api.soundcloud.com/tracks/'+songID+'&show_comments=true&auto_play=true&color=001cff" type="application/x-shockwave-flash" width="'+pWidth+'"></embed></object>';

 document.getElementById('cloudTrackListTitle').innerHTML=nowPlaying + songTitle;

}


