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

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

// MULTI-LEVEL CONTENT CATEGORY
// should be something like: '/creativeservicestestacct;/Test+Do+Not+Use/creativeservicestestacct' 
var hitboxMultiLevelContentCategory = '/Intl/Entertainment+Television/mtvuntoldstoriesUK';     



function loginCheckEN(location)
{	
	
	if (isLoggedIn > 0)
    {
		
		window.open(location,'','');
    }
	else
	{
		alert('You must be logged in to submit your entry');
	}
}


function loginCheckES(location)
{	
	
	if (isLoggedIn > 0)
    {
		
		window.open(location,'','');
    }
	else
	{
		alert('Necesitas iniciar sesi\363n para subir');
	}
}

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