// set to true to enable hit box tracking
var hitboxEnabled = true;

// ACCOUNT NUMBER(S)
// should be something like: 'DM570627H0DS38EN3;DM57050997CW38EN3' 
var hitboxAccountNumber = 'DM570530D2AE38EN3;DM57050997CW38EN3';          

// MULTI-LEVEL CONTENT CATEGORY
// should be something like: '/creativeservicestestacct;/Test+Do+Not+Use/creativeservicestestacct' 
var hitboxMultiLevelContentCategory = '/twilightthemovie;/Entertainment+movie+dvd/twilightthemovie';     


// popup code
function openWindow(URL, windowName, windowFeatures){
newWindow = window.open(URL, windowName, windowFeatures)
}


var win = null;
var index = 1;
function openDialog(id,w,h) {
    Dialog.alert($(id).innerHTML, {className: "alphacube",  width:w, height:h, id: "d" + index})
    index++;
	document.getElementById('videoHidder').style.display = 'none';
}

function lastDialog(id) {
    Dialog.confirm($(id).innerHTML, {className: "alphacube",  width:250, okLabel: "Close All", ok: closeAllModalWindows})
}

function closeAllModalWindows() {
    Windows.closeAllModalWindows();
    //return true;
	document.getElementById('videoHidder').style.display = 'inline';
}


// loads the std video player
function loadStandard() {
	var videoPlayerContainer = document.getElementById('videoHolder');
	videoPlayerContainer.innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=39180808,mt=video,ap=1,primaryColor=0x7d9dae,sr=0" width="802" height="490" allowFullScreen="true" type="application/x-shockwave-flash" wmode="opaque"></embed>';
	var defButtonContainer = document.getElementById('standardDef');
	defButtonContainer.innerHTML = '<a href="javascript:void(0);" onClick="loadHiDef(); return false" name="&lid=watchHiDefTrailer" alt="Watch the Hi-Def Video Size"><img border="0" src="http://creative.myspace.com/Client/WarnerBros/DarkKnight/Images/hiDefButton.gif"/></a>';
}


// loads the hd video player
function loadHiDef() {
	var videoPlayerContainer = document.getElementById('videoHolder');
	videoPlayerContainer.innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=42188128,t=1,mt=video,ap=1,primaryColor=0x7d9dae,sr=0" width="802" height="490" allowFullScreen="true" type="application/x-shockwave-flash" wmode="opaque"></embed>';
	var defButtonContainer = document.getElementById('standardDef');
	defButtonContainer.innerHTML = '<a href="javascript:void(0);" onClick="loadStandard(); return false" name="&lid=watchStandardTrailer" alt="Watch the Standard Video Size"><img border="0" src="http://creative.myspace.com/Client/Marketing/TrailerPark/Images/std.gif"/></a>';
}



function SwapOut(videoText){
	var videoDescriptionContainer = document.getElementById('videoTitles');
   	videoDescriptionContainer.innerHTML = videoText;
    return true;
}

function SwapBack(){
	var videoDescriptionContainer = document.getElementById('videoTitles');
    videoDescriptionContainer.innerHTML = "this is text";
    return true;
}





function OnVideoClick(videoId) {
    LoadVideo(videoId);
}

// loads the video player
// width and height are optional
function LoadVideo(videoId) {

    // change the video source   
    var videoPlayerContainer = document.getElementById('videoHolder');
    videoPlayerContainer.innerHTML = '<embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m='+ videoId + ',mt=video,ap=1,primaryColor=0x7d9dae,sr=0" width="802" height="490" allowFullScreen="true" type="application/x-shockwave-flash" wmode="opaque"></embed>';   
}

