//Code to open links in a new specified window

function openPopUp(url, name, width, height)
{
  var winOpts = 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=auto,resizable=yes'+",width="+width+",height="+height;
  popUpWin = window.open(url, name, winOpts);
}


//This code controls the search submit button so that it must be clicked rather than hitting enter for NCRs search 

valid_submission = false

function ValidateSubmission() {
  if (valid_submission) {
    valid_submission = false
    return true
  } else {
    return false
  }
}








