

/*------------------------

 rewriting QuickTime generation function
 
------------------------*/
function QT_WriteOBJECT_XHTML2() {
	return _QTGenerate("QT_WriteOBJECT_XHTML2", true, arguments);
}


/*------------------------

 initialize width and height definitions
 
------------------------*/

var widthHD = 960;
var heightHD = 565;

var widthStandard = 960;
var heightStandard = 565;


/*------------------------

 show HD video function
 
------------------------*/
function showHDVideo(hdID, standardID, largeAssetsURLbase, qt480, qt720, qt1080) {   
    /* code for embed input field - dependent on standardID variable being passed  */
    var standardEmbed = '&lt;embed src=&quot;http://mediaservices.myspace.com/services/media/embed.aspx/m=' + standardID + ',t=1,mt=video&quot; width=&quot;' + widthStandard + '&quot; height=&quot;' + heightStandard + '&quot; allowFullScreen=&quot;true&quot; type=&quot;application/x-shockwave-flash&quot; /&gt;';
 
    /* swapping in the HD Video content */
    document.getElementById('videoPlayerContent').innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=' + hdID +',t=1,mt=video,sr=0,ap=1" width="' + widthHD + '" height="' + heightHD + '" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash" />';
    document.getElementById('shareContent').innerHTML = '';
    document.getElementById('otherVideosContent').innerHTML = '';
    
    /* sets the wrapping DIV width */
    document.getElementById('playerwrapper').style.width = widthHD + "px";
    
    /* bringing in the QT object/embed content to the HD menu */
    document.getElementById('480button').innerHTML = QT_WriteOBJECT_XHTML2("http://creative.myspace.com/Client/Marketing/TrailerPark/Quicktime/480p.mov","44","27","","bgcolor","FFFFFF","controller","false","href", largeAssetsURLbase + qt480,"target","QuickTimePlayer");
    document.getElementById('720button').innerHTML = QT_WriteOBJECT_XHTML2("http://creative.myspace.com/Client/Marketing/TrailerPark/Quicktime/720p.mov","52","27","","bgcolor","FFFFFF","controller","false","href", largeAssetsURLbase + qt720,"target","QuickTimePlayer");
    document.getElementById('1080button').innerHTML = QT_WriteOBJECT_XHTML2("http://creative.myspace.com/Client/Marketing/TrailerPark/Quicktime/1080p.mov","67","27","","bgcolor","FFFFFF","controller","false","href",largeAssetsURLbase + qt1080,"target","QuickTimePlayer");
    
}


/*------------------------

 show standard player function
 
------------------------*/
function showStandardVideo(hdID, standardID, largeAssetsURLbase, qt480, qt720, qt1080) {
    /* code for embed input field - dependent on standardID variable being passed  */
    var standardEmbed = '&lt;embed src=&quot;http://mediaservices.myspace.com/services/media/embed.aspx/m=' + standardID + ',t=1,mt=video&quot; width=&quot;' + widthStandard + '&quot; height=&quot;' + heightStandard + '&quot; allowFullScreen=&quot;true&quot; type=&quot;application/x-shockwave-flash&quot; /&gt;';

    /* swapping in the Stanard Video content */
    document.getElementById('videoPlayerContent').innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=' + standardID +',t=1,mt=video,sr=0,ap=1" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash" width="' + widthStandard + '" height="' + heightStandard + '" wmode="transparent"/>';
    document.getElementById('shareContent').innerHTML = '';
    document.getElementById('otherVideosContent').innerHTML = '';
    
    /* sets the wrapping DIV width */
    document.getElementById('playerwrapper').style.width = widthStandard + "px";
}



/*------------------------

 show standard player only (no HD swapping) function
 
------------------------*/
function showStandardOnly(standardID) {
    /* code for embed input field - dependent on standardID variable being passed  */
   
    /* swapping in the Stanard Video content */
    document.getElementById('videoPlayerContent').innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=' + standardID +',t=1,mt=video,sr=0,ap=1" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash" width="' + widthStandard + '" height="' + heightStandard + '" wmode="transparent"/>';
    document.getElementById('shareContent').innerHTML = ''; 
    document.getElementById('otherVideosContent').innerHTML = '';
    
    /* sets the wrapping DIV width */
    document.getElementById('playerwrapper').style.width = widthStandard + "px";
}


window.onload=function(){
    /*showHDVideo(62145286, 62145286, 'http://largeassets.myspacecdn.com/creative/hd/hp6_main/', '59205023_480p.mov', '59205023_720p.mov', '59205023_1080p.mov')*/
	showStandardOnly (63392156)
}


