﻿function InitPage() {
}

function Transfer(country) {
    Anthem_InvokePageMethod(
	    'InitialiseQuickQuote',
		[country],
		ActionResult
    );
}

function ActionResult(result) {
    if (!result.error) {
        if (result.value[0] == "OK") {
            location.href = result.value[1];
        }
    }
    else {
        alert("QuickQuote encountered a problem");
    }
}
