﻿    
    function proceed(country)
    {
        var loc = String(document.location);
        
        if (loc.indexOf("?etg") != -1) 
	    {
	        document.location = "disclaimer_etg_" + country + ".asp";
	    }
	    else if (loc.indexOf("?comf_en") != -1)
        {
            document.location = "/fund/etfx_fund_all_commodities_3_month_forward_en.asp";
        }
        else if (loc.indexOf("?comf_de") != -1) {
            document.location = "/fund/etfx_fund_all_commodities_3_month_forward_de.asp";
        }
        else if (loc.indexOf("?ivstoxx_en") != -1) {
            document.location = "/fund/etfs_fund_bofaml_ivstoxx_en.asp";
        }
        else
	    {
	        document.location = "/" + country + "/welcome.asp";
	    }
    }
