// StealMyMusic.com JavaScript

//right-click to download
function oops() {
	alert("OOPS!  You have to right-click and save the song to your computer.");
	return false;
}

function statefulToggle ( link, elementID, text ) {
  Element.toggle( elementID ); // toggle the element
  if ( link.innerHTML != text )
  {
    // change link text
    link.oldInnerHTML = link.innerHTML;
    link.innerHTML = text;    
  }
  else
  {
    // change it back
    link.innerHTML = link.oldInnerHTML;
  }
}