var popped=0;
function freesignup()
{
   if(popped==0)
   {
      var width=500;
      var height=550;
      var winl = (screen.width-width)/2;
      var wint = (screen.height-height)/2;
      if (winl < 0) winl = 0;
      if (wint < 0) wint = 0;
      popped=1;
      $.ajax({ type: "POST", url: "/ajaxsignup/popped/", data: 'pop=1'});
      var winb="menubar=yes,resizable=yes,width="+width+",height="+height+",scrollbars=yes,location=yes,toolbar=yes";
      winb += ',top=' + wint + ',';
      winb +='left=' + winl;
      newWindow = window.open('/freesignup/', "Community", winb);
      newWindow.blur();
      window.focus();
   }
}

