//GLOBAL
function go(url, target, w, h) {
  if (target) {
    var width = 700;
    var height = 400;
    if (w) width = w;
    if (h) height = h;
    window.open(url, target, 'width=' + width + ',height=' + height + ',location=no,scrollbars=yes,status=no,resizable=yes');
  } else {
    document.location.href = url;
  }
}


function forgotPassword() {
  document.signin.action = "/b2c/login/prepare_reset_password.action";
  document.signin.submit();
}