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

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

// MULTI-LEVEL CONTENT CATEGORY
// should be something like: '/creativeservicestestacct;/Test+Do+Not+Use/creativeservicestestacct' 
var hitboxMultiLevelContentCategory = '/doritoscrashthesuperbowl;/Food+Bev+Candy/doritoscrashthesuperbowl';     





// LOGIN CHECK
function openWindow(URL, windowName, windowFeatures){ 
		newWindow = window.open(URL, windowName, windowFeatures) 
	}
function EnterContest() 
{


    if(isLoggedIn < 0)
    {
        alert('You must be logged in to your MySpace profile to submit!');
        window.location = "http://login.myspace.com/index.cfm";
        return false;
    }
    else
openWindow('http://creative.myspace.com/Client/Doritos/CrashTheSuperBowl/submit.html', 'newWin', 'toolbar=0,width=700,height=700,scrollbars=yes'); 

}


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