function mover(mid){        		
	var el=document.getElementById(mid);
	var ell=document.getElementById("m"+mid);
	if ( el == null ) return;
	if ( el.className=='lmitem' ) {        		        			
		el.className='lmitemsel';
		if(ell) ell.className='mtdsel';
	}
	else {
		el.className='lmitem';
		if(ell) ell.className='mtd';
	}
}
