  function actionURL (inputURL, pageID, targetID) {
    if (targetID == 1) {
      //open in new window
      newwin = window.open( inputURL, pageID, "height=600,width=900,left=10,top=10,location=yes,scrollbars=yes,toolbar=yes,menubar=no,directories=no,titlebar=no,resizable=yes", false );
      newwin.focus();
    } else {
      //load into the same window
      document.location.href = inputURL;
    }
  }
