I would like to use a value passed in to a function to define which variables and ids to act upon in the function:
var Song1 = "Do";
var Song2 = "Re";
var Song3 = "Me";
function SendVariable(x){
alert(Song+x);
document.getElementById("Song"+x+"Text").innerHTML = Song+x;
}