
//---------------------------------------------------------------------------
function showCountryList() {
        var win1;
        win1 = window.open("CountryList.aspx", "CountryList", "width=400,height=575,toolbar=0,location=0,directories=0,status=0,menubar=0");
        if (win1 == null) {
            alert("Could not open the window for Country List");
        }
    }

//---------------------------------------------------------------------------
function showCountryRates() {
        var win1;
        win1 = window.open("CountryRate.aspx", "CallingRates", "width=450,height=590,toolbar=0,location=0,directories=0,status=0,menubar=0");
        if (win1 == null) {
            alert("Could not open the window for Country Rates");
        }
    }

//---------------------------------------------------------------------------
function showReferPreview() {
        var win1;
        win1 = window.open("ReferPreview.aspx", "Preview", "width=600,height=400,toolbar=0,location=0,directories=0,status=0,menubar=0");
        if (win1 == null) {
            alert("Could not open the window for Preview");
        }
    }

//---------------------------------------------------------------------------

//---------------------------------------------------------------------------

//---------------------------------------------------------------------------