function resizeWindow()
{
   var sp = document.getElementById("mainBGz");
      
   sp.style.left = ((parseInt(document.body.clientWidth) - parseInt(sp.style.width)) / 2) + "px";
}

function selectSong(obj)
{
   var ss,
       st,
       dir = obj.getAttribute("dir"),
       song = obj.getAttribute("song"),
       songnum = obj.getAttribute("songnum"),
       lyric = obj.getAttribute("lyric");
      
   ss = document.getElementById("zTdSong");
   st = "<embed src='music/"+dir+"/"+song+"'></embed>";
   ss.innerHTML = st;

   ss = document.getElementById("zTdTitle"),
   ss.innerHTML = obj.getAttribute("songname");

   st = "If you would like to buy a copy of this song and download it now for a whopping 99 cents<br><a style='width:131; border:solid 1px #606060; background:tan; font-size:13; text-align:center; cursor:pointer;' target='new' href='"+obj.getAttribute("purchase")+"'>Please Click Here</a>";
   ss = document.getElementById("zTdBuy1"),
   ss.innerHTML = st;

   //st = "If you would like to buy the entire CD for $20 (including shipping within the US)<br><span style='position:relative; font-style:italic; font-weight:bold;'>Please Click Here</span>";
   st = "I'm also still working on making it available as a CD although these days most people play things on their iPod's anyway and it may not be that important";
   ss = document.getElementById("zTdBuy2"),
   ss.innerHTML = st;

   if (lyric == "")
   {
      st = "";
      ss.innerHTML = st;
      return;
   }

   st = "<iframe"
      + " src='music/"+dir+"/"+lyric+"'"
      + " width=420"
      + " height=1500"
      + " frameborder='0'"
      + " framespacing='0'"
      + " hspace='0'"
      + " vspace='0'"
      + " marginwidth='0'"
      + " marginheight='0'"
      + " border='0'"
      + " scrolling='no'"
      + ">"
      + "</iframe>"
      ;
   ss = document.getElementById("zTdText"),
   ss.innerHTML = st;
}

function StartUp()
{
   resizeWindow();
}
