// $Id: fileuploader_scripts.js 2474 2006-11-05 11:39:30Z zeke $

function fn_fo_show_sibling(elm)
{
	document.getElementById('box_'+elm).style.display='';

	if (elm.indexOf('ldata')!=-1) {
		document.getElementById('box_'+fn_str_replace_string(elm,'ldata','sdata')).style.display='none';
		document.getElementById('box_'+fn_str_replace_string(elm,'ldata','udata')).style.display='none';
	}

	if (elm.indexOf('sdata')!=-1) {
		document.getElementById('box_'+fn_str_replace_string(elm,'sdata','ldata')).style.display='none';
		document.getElementById('box_'+fn_str_replace_string(elm,'sdata','udata')).style.display='none';
	}

	if (elm.indexOf('udata')!=-1) {
		document.getElementById('box_'+fn_str_replace_string(elm,'udata','ldata')).style.display='none';
		document.getElementById('box_'+fn_str_replace_string(elm,'udata','sdata')).style.display='none';
	}
}
