function formfocus() {
  if (document.getElementById('gid'))
    document.getElementById('gid').focus();
  if (document.getElementById('sid'))
    document.getElementById('sid').focus();
}
window.onload = formfocus;
