﻿function ProcessLogin(event)
{
    var formLogin = document.getElementById("formLogin");
    
    formLogin.action = "/Custom/Login-Redirect.aspx";
    formLogin.submit();

    return true;
}

