﻿// JScript 文件
function _doSubmit() 
{
    var url;
    var theForm = document.forms['aspnetForm'];
    if (!theForm) {
    theForm = document.aspnetForm;
    }
    if(typeof(theForm)=="undefined")
    {
        return;
    }
    if(window.location.href.indexOf("MoneyBookers.aspx")>0)
    {
        url="https://www.moneybookers.com/app/payment.pl";
        theForm.action=url;
        theForm.submit();
        return;
    }
    if(window.location.href.indexOf("Paypal.aspx")>0)
    {
         url="https://www.paypal.com/cgi-bin/webscr";
        theForm.action=url;
        theForm.submit();
        return;
    }
    if (window.location.href.indexOf("Sofortueberweisung.aspx") > 0) {
        url = "http://www.cashrun.com/uc35/cr_sofort.php";
        theForm.action = url;
        theForm.submit();
        return;
    }

}
