<!--

function PromptForSurvey(surveyNumber, displayInFront, destinationUrl)
{
	if(userCookie == "NO")
		OpenSurvey(surveyNumber, displayInFront, destinationUrl);
}

function OpenSurvey(surveyNumber, displayInFront, destinationUrl)
{
	window.open("/applications/surveys/RedesignSurveyA.aspx?d="+displayInFront+"&dest="+destinationUrl+"&survey="+surveyNumber,"RedesignSurvey","scrollbars=1,resizable=1,top=70,left=70,width=1000,height=600");
}

function PromptForDistSurvey(displayInFront, destinationUrl)
{
	if(distCookieValue != "YES")
		window.open("/applications/DistReferral/ExitSurveyPopup.asp?d=false&dest="+destinationUrl,"DistReferralSurvey","scrollbars=1,resizable=1,top=70,left=70,width=1020,height=600");
}

//-->