function selectFormat()
{
	if (document.forms[0].rabformat[0].checked) 
		self.location.href='/register/form/online/';
	else if (document.forms[0].rabformat[1].checked)
		self.location.href='/register/form/print/';
	else if (document.forms[0].rabformat[2].checked)
	  	self.location.href='/register/form/mail/';
	else
		alert ('Please select the way in which you would like to apply by choosing one of the three choices.');
}// Close storeSelection

