function js02_ecsOn(id,id2,img) {
	$('#'+id).css({'backgroundColor':'blanchedalmond'});
	$('#'+id2).css({'backgroundColor':'blanchedalmond'});

	if ($('#'+img).attr('src')) {
		 $('#fun_ecs').attr('src',$('#'+img).attr('src'))
		   .css({ 'left':$('#'+img).offset().left +  'px','top':$('#'+img).offset().top +'px'})
		   .show();
	}
}

function js02_ecsOut(id,id2,trcolor,img){
	$('#fun_ecs').hide();
	$('#'+id).css({'backgroundColor':'white'});
	$('#'+id2).css({'backgroundColor':'white'});
}

