function openWindow(theURL,winName,features) {
  newWindow = window.open(theURL,winName,features);
  newWindow.focus();
}
