

/* ===================== CUSTOM VARS ====================== */


var EntryPointID = "MTV";

// Current valid entry point ids are as follows :
// MTV
// YAHOO
// LOCAL


var UseIncentivated = true;		

// set this to true or false to determine whether competition entries are also sent to Incentivated
 




/* ===================== DO NOT EDIT BELOW THIS LINE ====================== */

function getEntryPointID() {
	return EntryPointID;
}

function getUseIncentivated() {
	return UseIncentivated;
}

function getQuery() {
	retstr = "";
	fullURL = document.location.href;
	if (fullURL.indexOf('?') > 0) {
		retstr = fullURL.substring(fullURL.indexOf('?')+1, fullURL.length);
		retstr = unescape(retstr);
	}
	return (retstr);
}

function getPageURL() {
	retstr = document.location.href;
	if (retstr.indexOf('?') > 0) {
		retstr = retstr.substring(0, retstr.indexOf('?'));
	}
	return (retstr);
}

function gotoURL(url) { window.location = url; }

function feedback(str) {
	alert(">> Hello " + str + ".");
	return ">> Hi Flash.";
}