﻿var topLevelUrl;
try
{
	topLevelUrl = top.location.href;
}
catch (ex)
{
	topLevelUrl = "fridays.com";
}
finally
{
	if (topLevelUrl.indexOf('staging') > -1  || topLevelUrl.indexOf('localhost') > -1 || topLevelUrl.indexOf('fridays:99') > -1 ) {
		// do nothing
	} else {
		// Is it empty on live
		if (topLevelUrl.indexOf('fridays.com') == -1)
		{
		    //window.location = 'http://tgifqa.deutschinc.com/redesign2008/gmms/GiveMeMoreStripes.aspx';
		    top.location = 'https://www.tgifridays.com/gmms/GiveMeMoreStripes.aspx';
		}
		
	}
}