var showPopUnder = false;
var surveyId = null;

function showSurvey(toggle){

	showPopUnder = toggle;
}
function handleSurvey() {

	if (surveyId != null)  {
		if (showPopUnder){
			var winfeatures="width=800,height=600,scrollbars=1,resizable=1,toolbar=0,location=0,menubar=0,status=1,directories=0";
			win2=window.open(surveyAction+ "?questionnaireId="+surveyId,"ehPopUnder",winfeatures);
			if (win2 != null){
				win2.blur();
				window.focus();
			}
		}
	}

}

function showPopunder(){

	if (surveyId != null)  {
		var winfeatures="width=800,height=600,scrollbars=1,resizable=1,toolbar=0,location=0,menubar=0,status=1,directories=0";
		win2=window.open(surveyAction+ "?questionnaireId="+surveyId,"ehPopUnder",winfeatures);
		if (win2 != null){
			win2.blur();
			window.focus();
		}
	}
	
}
