// added on 5/3/2006
function checkAction()
{
        var thispageurl = location.host;
        var thisformaction = document.getElementById("prepaid-form");
        if (thispageurl.indexOf('consumer') != 0)
        {
                thisformaction.action = "https://"+thispageurl+"/prepaidcard/GetCard.do";
        }
}
function checkActionRate()
{
        var thispageurl = location.host;
        var thisformaction = document.getElementById("prepaid-form");
        if (thispageurl.indexOf('consumer') != 0)
        {
                thisformaction.action = "https://"+thispageurl+"/prepaidcard/GetRate.do";
        }
}

function checkActionRateInt()
{
	var thispageurl = location.host;
	var thisformaction1 = document.getElementById("prepaid-form1");
	var thisformaction2 = document.getElementById("prepaid-form2");
	var thisformaction3 = document.getElementById("prepaid-form3");
	if (thispageurl.indexOf('consumer') != 0)
	{
		thisformaction1.action = "https://"+thispageurl+"/prepaidcard/GetRate.do";
		thisformaction2.action = "https://"+thispageurl+"/prepaidcard/GetRate.do";
		thisformaction3.action = "https://"+thispageurl+"/prepaidcard/GetRate.do";
	}
}

