// JavaScript Document
function popWin (theURL,winName,features) {
  window.open(theURL,winName,features);
  return false;
}
