
  function LaunchGoogleLogin()
  {
    width = 617
    height = 500
    url = '/login/google/'
    xPos = (screen.width - width) / 2
    yPos = (screen.height - height) / 2
    gl = window.open(url, '', 'width=' + width + ',height=' + height + ',scrollbars,!menubar,resizable,status,left=' + xPos + ',top=' + yPos)
    gl.focus()
  }

