function openSong(theURL,winName) { //v2.0
            window.open(theURL,winName,'scrollbars=0,resizable=0,location=0,toolbar=0,menubar=0,top=100,left=300,width=440,height=200');
  }
  function openSongSmall(theURL,winName) {
            window.open(theURL,winName,"channelmode=no, scrollbars=no,resizable=no,location=no,titlebar=no,status=no, toolbar=no, menubar=no,top=100,left=300,width=150,height=100");
  }
function setTalkBubbleInit ( )
  {
   document.getElementById("layer1rc2").style.visibility = "hidden";
   document.getElementById("layer1rc4").style.visibility = "hidden";
  }

function talkBubbleDisplay ( )
    {
    document.getElementById("layer1rc2").style.visibility = "visible";
    openSongSmall('mp3/get_with_the_beat.mp3')
    }
//variables and function for random voices
var allTalk = new Array ("mp3/get_with_the_beat.mp3","mp3/cool_to_be_green.mp3","mp3/get_ready_for_this.mp3","mp3/welcome_to_planet_green.mp3");

function playRandomVoice ( )
    {
    var choice = Math.floor(Math.random() * allTalk.length);
    openSongSmall(allTalk[choice]);
    choice = "";
    }
//variables and function for video
function playVideo ( )
{

 window.open('/rapcatmoves.htm','moves','scrollbars=0,resizable=0,location=0,toolbar=0,menubar=0,top=100,left=300,width=640,height=480');


}
