// set to true to enable hit box trackingvar hitboxEnabled = true;// ACCOUNT NUMBER(S)var hitboxAccountNumber = 'DM570627JDMB38EN3;DM57050997CW38EN3';          // MULTI-LEVEL CONTENT CATEGORYvar hitboxMultiLevelContentCategory = '/stoplossmovie;/Entertainment+movie+dvd/stoplossmovie';    //set video window functionvar defaultWidth = 306;var defaultHeight = 254;// loads the video player and then changes the text.// width and height are optionalfunction OnVideoClick(videoId, width, height){    LoadVideo(videoId, width, height);}// 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('videoPlayer');    videoPlayerContainer.innerHTML = '<embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="sr=0&a=1&m=' + videoId + '&type=video" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>';    }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('videoPlayer').style.display = 'none';	document.getElementById('photoScroller').style.display = 'none';	photoScroller}function lastDialog(id) {    Dialog.confirm($(id).innerHTML, {className: "alphacube",  width:250, okLabel: "Close All", ok: closeAllModalWindows})}function closeAllModalWindows() {    Windows.closeAllModalWindows();	document.getElementById('videoPlayer').style.display = 'inline';	document.getElementById('photoScroller').style.display = 'inline';}function copyit(theField) {	var tempval=eval("document."+theField)	tempval.focus()	tempval.select()	therange=tempval.createTextRange()	therange.execCommand("Copy")}