  var page_loaded = false;
  
  function goWait(link) {
    if (page_loaded)
      {
        top.location = link;
      }
    else
      {
	alert('Please wait for the page to finish loading.');
      }
  }
  
  function AskOrder() 
  {
    var cod = false;
   // <? 
   //   if ($_SESSION['cust']['credit'] == 3)
   //     {
   //       echo "cod = confirm(\"Click 'OK' for C.O.D. order, 'Cancel' for Credit Card order.\");";
   //     }
   // ?>
    if (cod)
      {
        top.location = 'order.php?cod=1';
        return true;
      }
    else
      {
        top.location = 'order.php?cod=0';
        return true;
      }
  }

  function processMenuForm(useAction) { 
    var sub_entry = document.getElementById('subid'); 
    if (sub_entry.value == "") 
      {
	alert('You must enter a Subscriber ID.');
	sub_entry.focus();
	sub_entry.blur();
	sub_entry.select();
	return false;
      } 
    if (useAction == 'View') { document.MenuForm.action ="access-view"; }
    else if (useAction == 'Edit') { document.MenuForm.action ="access-edit"; }
    else if (useAction == 'ActivateSIM') { document.MenuForm.action ="access-activate"; }
    else if (useAction == 'Cancel') { document.MenuForm.action ="access-cancel"; }
    else if (useAction == 'View Log') { document.MenuForm.action ="access-log"; }
    document.MenuForm.submit(); 
    return true;
  }


