/*FILENAME: JS_Repository/popAnewWndw.js*/
/*-- $Name: Release_7-5 $ --*/
/*-- $Header: /CVSRepositories/TSI_WebSite/JS_Repository/popAnewWndw.js,v 1.3 2007/05/28 14:30:46 Tsi Exp $ --*/
//© 2004-2007 TurnSignal Inc.
function popAnewWndw(url) {
//alert("Entering popAnewWndw......W/" + url);
// opens url in a new window without chrome   
  var popper = null;
  popper = window.open(url,'_blank','resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no');
  if (popper) {
//alert("in Pop-A-Window: new window name: " + popper.name);
    invalidexit = true;
    var rtnVal = true;
  } else {
    alert("You appear to have Pop-ups Blocked!  Please unblock to continue.\n\nWe recommend:\n\n\"Always Allow Pop-ups from This Site...\"");
    invalidexit = false;
    var rtnVal = false;
  }
  return rtnVal;
}  //end popAnewWndw()