
<!--
function exitSurvey(iCustomWidth, iCustomHeight)
{
	var iCookieValue = '';
	
	var iWidth = 430;
	var iHeight = 290;
	if(iCustomWidth){iWidth = iCustomWidth}
	if(iCustomHeight){iHeight = iCustomHeight}
	if(navigator.appName.indexOf("WebTV")==-1)
	{
		exitSurveyWin = open('', 'exitSurveyWin','toolbar=0,menubar=0,scrollbars=0,left=0,top=0,status=0,resizable=1,width='+iWidth+',height='+iHeight);
		exitSurveyWin.blur();
		exitSurveyWin.location = '/exitsurvey.asp';
		var shut=true;
	}
	
	return true;
}
// -->