var defaultWidth = 321;
var defaultHeight = 271;

// loads the video player and then changes the text.
// width and height are optional


// loads the main player
// width and height are optional
function LoadMainVideo(videoId, width, height)
{
    // if the width and height have been specified, we set it.
    // otherwise we use the default width and height that are defined above
    width = (width) ? width : defaultWidth;
    height = (height) ? height : defaultHeight;
    
    // change the video source   
    var mainVideoContainer = document.getElementById('mainFeaturedVideos');
    mainVideoContainer.innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=' + videoId + ',t=1,mt=video,sr=0,ap=1" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>';

}


// loads the video player
// width and height are optional
function LoadVideo(videoId, width, height)
{
    // if the width and height have been specified, we set it.
    // otherwise we use the default width and height that are defined above
    width = (width) ? width : defaultWidth;
    height = (height) ? height : defaultHeight;
    
    // change the video source   
    var videoPlayerContainer = document.getElementById('featuredVideos');
    videoPlayerContainer.innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=' + videoId + ',t=1,mt=video,sr=0,ap=1" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>';

}

//popup window
function openWindow(URL, windowName, windowWidth, windowHeight){
    newWindow = window.open(URL, windowName, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=' + windowWidth +',height=' + windowHeight + '');
}

function LoadMusic(mp3path, mp3Title) {
    var mp3PlayerContainer = document.getElementById('customPlayer');
    
    mp3PlayerContainer.innerHTML = '<embed src="http://creative.myspace.com/Client/McDonalds/BigMacChant/Swf/player.swf" flashvars="mp3=' + mp3path + '&amp;bgcolor1=c8000e&amp;bgcolor2=650007&amp;buttoncolor=fbd31b&amp;buttonovercolor=000000&amp;slidercolor1=fbd31b&amp;slidercolor2=bc9e14&amp;sliderovercolor=000000&amp;textcolor=0&amp;autoplay=1" width="300" height="75" wmode="transparent"></embed><br>NOW PLAYING: ' + mp3Title + '';

}

