function changevis()
{
	var ctrlnum = 1;
	'dnn$ctr$ManageUsers$Profile$ProfileProperties$ctl05$_vis'
	var thetext = 'dnn_ctr_ManageUsers_Profile_ProfileProperties_ctl0' + ctrlnum + '__vis';
	while ( document.getElementById(thetext) )
	{
		document.getElementById(thetext).style.display='none';
		ctrlnum = ctrlnum + 1;
		if ( ctrlnum > 9 )
		{
			thetext = 'dnn_ctr_ManageUsers_Profile_ProfileProperties_ctl' + ctrlnum + '__vis';
		}
		else
		{
			thetext = 'dnn_ctr_ManageUsers_Profile_ProfileProperties_ctl0' + ctrlnum + '__vis';
		}
		if ( !( document.getElementById(thetext) ) )
		{
			ctrlnum = ctrlnum + 1;
			if ( ctrlnum > 9 )
			{
				thetext = 'dnn_ctr_ManageUsers_Profile_ProfileProperties_ctl' + ctrlnum + '__vis';
			}
			else
			{
				thetext = 'dnn_ctr_ManageUsers_Profile_ProfileProperties_ctl0' + ctrlnum + '__vis';
			}
		}
	}
}