var RONIN = "http://www.ronincorporateventures.com";


GoToETURL.thirdParty = function(sParty) {
	switch(sParty) {
		case "ronin": return RONIN;
	}
}


function GoToETURL(urlPath,thirdParty) {
	if(thirdParty == null) {
		thirdParty = "";
	}
	window.top.location.href = etURL.parse(urlPath,thirdParty); 
}


function checkSpeedBump(urlPath)
{
	var isSpeedBump = urlPath.indexOf("/somewhere");
	var refr = "";
	if(isSpeedBump != -1)
	{
		var referrer = document.URL;	
		refr="&hReferrer="+referrer;	
	}
	return refr;
}
