function openPlainWindow(theURL,winName,features) { 
  theWin = window.open(theURL,winName,features);
  theWin.focus();
}
  
