/* Possibly pull this into an exit popup javascript file later on */
var survey_urls = [ '',
                    'http://www.surveymonkey.com/s.aspx?sm=JXvVp49pY4GA_2f_2fkxdkTVTw_3d_3d'+'&append_session=c',
                    'http://www.surveymonkey.com/s.aspx?sm=C_2bepH7JVDeQJMRpAjGXJDA_3d_3d'+'&append_session=c',
                    'http://www.surveymonkey.com/s.aspx?sm=A6SOBLOXU7lLSnglElahKw_3d_3d'+'&append_session=c',
                    'http://www.surveymonkey.com/s.aspx?sm=oYEpDJNm7m3z6zZCeMEP9g_3d_3d'+'&append_session=c' ];
/*
 * P1    = http://www.surveymonkey.com/s.aspx?sm=JXvVp49pY4GA_2f_2fkxdkTVTw_3d_3d
 * P1AOE = http://www.surveymonkey.com/s.aspx?sm=C_2bepH7JVDeQJMRpAjGXJDA_3d_3d
 * P2    = http://www.surveymonkey.com/s.aspx?sm=A6SOBLOXU7lLSnglElahKw_3d_3d
 * P3    = http://www.surveymonkey.com/s.aspx?sm=oYEpDJNm7m3z6zZCeMEP9g_3d_3d
 */

var popup_url     = survey_urls[0]; //Default for all pages
var popup_enabled = false;

function initialize_popup(url)
{
  popup_url     = url;
  popup_enabled = true;


  if (typeof(nopopup) != 'undefined')
  {
    return true;
  }

  $(window).unload(function (){
    if (popup_enabled)
    {
      var win = 'toolbar=0,directories=0,menubar=0,scrollbars=1,resizable=0,width=800,height=600';
      open('/external.php?url='+popup_url,'Thanks_for_visiting',win);
    }
  });
}
function set_popup(url)
{
  popup_url = url;
}
function disable_popup()
{
  popup_enabled = false;
}
function enable_popup()
{
  popup_enabled = true;
}
function toggle_popup()
{
  if (popup_enabled)
  {
    popup_enabled = false;
  }else
  {
    popup_enabled = true;
  }
}
