var EFR_Config = 
{
	bIsRemote:true,
	env:"live",
	
	init:function()
	{
		if (EFR_Config.bIsRemote)
		{
			
			switch (EFR_Config.env) {
				case "dev":
					EFR_Config.PRO_FRAMER_ROOT="http://test.pro-framer.co.uk/";
					EFR_Config.PRO_FRAMER_ROOT_SECURE="http://test.pro-framer.co.uk/";
					break;
				case "test":
					EFR_Config.PRO_FRAMER_ROOT="http://test.pro-framer.co.uk/";
					EFR_Config.PRO_FRAMER_ROOT_SECURE="http://test.pro-framer.co.uk/";
					break;
				case "live":
					EFR_Config.PRO_FRAMER_ROOT="http://pro-framer.co.uk/";
					EFR_Config.PRO_FRAMER_ROOT_SECURE="https://www.pro-framer.co.uk/";
					break;
			}
			
		}
		else
		{
			EFR_Config.PRO_FRAMER_ROOT="http://localhost/pro-framer/";
			EFR_Config.PRO_FRAMER_ROOT_SECURE="http://localhost/pro-framer/";
		}
	}
}

