// $Id: fileuploader_scripts.js 1567 2006-04-25 11:28:28Z 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';

	}

}


