function openPFPCWindow()
{
   var url = "";
   var agent = navigator.userAgent.toLowerCase();
   var IE = (agent.indexOf("msie") != -1);
   var features = "directories,location,menubar,resizable,scrollbars,status,toolbar"

   url="http://portfolio.primerica.com"

   var mx = screen.width;
   var my = screen.height;

   if (mx > 800 && my > 600 )
   {
      //if the screen is bigger than 800x600 ... then center the new window
      //center the window

      //variables for centering the window ... default location of 0,0
      var xcenter = 0;
      var ycenter = 0;

      xcenter = (mx/2) - 400;
      ycenter = (my/2) - 300;

      if (IE)
         features += ",width=800,left=" + xcenter + ",top=" + ycenter;
      else // NS
         features += ",width=800,screenX=" + xcenter + ",screenY=" + ycenter;
   }

   var win3 = open(url,"ShareholderAccountManager",features);
}