// JavaScript Document
function cancion(path,track,idsoundbox){

if(track<10)track="0"+track;

songbed ='<embed src="'+path+'Track'+track+'.wav" border="0"  play="true" wmode="opaque" height="40" width="90%" scale="noscale" swLiveConnect="true" >';

document.getElementById(idsoundbox).innerHTML=songbed;

}

