/*FILENAME: popawindow.js*/
/*-- $Name: Release_7-8 $ --*/
/*-- $Header: /CVSRepositories/TSI_WebSite/JS_Repository/popawindow.js,v 1.8 2011/01/13 17:17:11 TSI Exp $ --*/
//--                    Copyright 2004 - 2011 TurnSignal Inc. All Rights Reserved.                          --//
//--========================================================================================================--//
// opens the supplied url in the current window.
function popawindow(url) {
//alert("Entering popAwindow.....");
  var popper = null;
  popper = window.open(url,'popper','resizable=no status=yes');
  if (popper) {
//alert("in Pop-A-Window: new window name: " + popper.name);
    invalidexit = true;
  } else {
    alert("You appear to have Pop-ups Blocked!    Please unblock to continue.\n\nWe recommend:Allow popups from this site.");
    invalidexit = false;
  }
  return false;
}  //end popawindow()
