 /**
  * Panel-related pop-up windows
  */
	
	// pop-up for new zoompanel users
	function panelist(exp, siteUrl) {
	  zp = window.open(siteUrl,'zoompanel','menubar=yes,toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,copyhistory=yes');
	  if (exp > 0) pop = window.open('../login/popup.zgi','popup','screenX=0,screenY=0,height=400,width=370,alwaysRaised=yes,status=yes');
	
	  return false;
	}

	// panelist recruiter survey
	function panelSurvey(searchString, surveyUrl, accountPin) {
		if (searchString=="yes") {
			window.open(surveyUrl+'&id='+accountPin,'zTell','menubar=yes,toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,copyhistory=yes,outerHeight=' + screen.availHeight + ',outerWidth=' + screen.availWidth);
		}
	}
