function EventRequest_GoToStep( stepnum )
{
	if ( stepnum == 1 ) { document.frmSubmit.action = 'questionnaire.aspx'; }
	else if ( stepnum == 2 ) { document.frmSubmit.action = 'questionnaire2.aspx'; }
	else if ( stepnum == 3 ) { document.frmSubmit.action = 'questionnaire3.aspx'; }

	document.frmSubmit.submit();
}