//This restores or backs up all user areas.
//argument0 = 0 - Restore; 1 - Backup

if(!argument0)
{

for(i = 0; i < global.u_total; i += 1)
{
unews_restore(i);
}

}
else
{

for(i = 0; i < global.u_total; i += 1)
{
unews_backup(i);
}

}