// This is      ***      MAIN  OPS     *** 

function popup4() {
// to open the survey results page in a popup window w/ the specified features
Remote=window.open("Survey.html","Remote","resizable=yes,scrollbars,width=470,height=600,left=0,top=0");
}

function popup5() {
// to display STM Stock Tracker portfolio and links in a popup window w/ the specified features
Remote=window.open("eAboutSTMStockTracker.html","Remote","resizable=yes,scrollbars,width=470,height=600,left=0,top=0");
}

function popup6() {
// to display current voter results page in a popup window w/ the specified features
Remote=window.open("Survey.html","Remote","resizable=yes,scrollbars,width=470,height=600,left=0,top=0");
}

function popup7() {
// to display voter choice in a popup window w/ the specified features
Remote=window.open("!!i.asp","Remote","resizable=no,scrollbars=no,location=no,menubar=no,titlebar=no,toolbar=no,width=400,height=300,left=200,top=150");
}

var cselected='';

function pickone(s) {
  cselected = s;
  document.choice.focus();

  return true;
}

function showvochoice() {

  if (cselected=='') {

    alert('Please click on your selection      \n\nbefore voting.  Thank you.');

  } else {

    alert('Your Vote has been registered:    '+cselected+'      \n\nThank you for your participation.');
    cselected='';
    document.MF.reset(this.form);
  }
}


