<HTML>
<HEAD>
<TITLE>Problem of Build the ITK application</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Hi All,<BR>
<BR>
I try to build the application of ITK , what I did : I install the ITK VTK &amp; FLTK and did the cmake.<BR>
<BR>
My computer is MAC<BR>
<BR>
When I do the make under the binary folder of Application.<BR>
<BR>
I list the error and my cmakelist file. <BR>
<BR>
Thanks a lot <BR>
<BR>
yingli<BR>
<BR>
<BR>
<BR>
here is the error<BR>
ld: Undefined symbols:<BR>
_fl_display<BR>
make[5]: *** [/Applications/ITK_VTK/ITK/InsightApplication_binary/SegmentationEditorFltkGui/EditorFltkGui/EditorFltkGui] Error 1<BR>
make[4]: *** [default_target] Error 2<BR>
make[3]: *** [default_target_EditorFltkGui] Error 2<BR>
make[2]: *** [default_target] Error 2<BR>
make[1]: *** [default_target_SegmentationEditorFltkGui] Error 2<BR>
make: *** [default_target] Error 2<BR>
<BR>
Here is my cmakelist.txt file<BR>
&nbsp;<BR>
<BR>
<BR>
<BR>
<BR>
CMAKE_MINIMUM_REQUIRED(VERSION 1.6)<BR>
PROJECT(InsightApplications)<BR>
INCLUDE_REGULAR_EXPRESSION(&quot;^.*$&quot;)<BR>
<BR>
# Tell CMake's FIND_PACKAGE command where to look for our Find&lt;pkg&gt;<BR>
# modules.<BR>
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${InsightApplications_SOURCE_DIR})<BR>
<BR>
IF(NOT WIN32)<BR>
&nbsp;&nbsp;OPTION(BUILD_SHARED_LIBS &quot;Build Insight-Applications with shared libraries.&quot; OFF)<BR>
ENDIF(NOT WIN32)<BR>
<BR>
# Don't build anything unless the version of CMake is high enough.<BR>
# The matching ELSE/ENDIF should be the last lines in the file.<BR>
IF(&quot;${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}&quot; GREATER 1.5)<BR>
<BR>
FIND_PACKAGE(ITK)<BR>
IF(ITK_FOUND)<BR>
&nbsp;&nbsp;INCLUDE(${ITK_USE_FILE})<BR>
ELSE(ITK_FOUND)<BR>
&nbsp;&nbsp;MESSAGE(FATAL_ERROR<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Cannot build InsightApplications without ITK. &nbsp;Please set ITK_DIR.&quot;)<BR>
ENDIF(ITK_FOUND)<BR>
<BR>
#-----------------------------------------------------------------------------<BR>
# Configure Dart testing support.<BR>
INCLUDE(${CMAKE_ROOT}/Modules/Dart.cmake)<BR>
MARK_AS_ADVANCED(TCL_TCLSH)<BR>
IF(BUILD_TESTING)<BR>
&nbsp;&nbsp;ENABLE_TESTING()<BR>
ENDIF(BUILD_TESTING)<BR>
<BR>
# Determine what packages are available<BR>
# Add an option to use or not use VTK<BR>
OPTION(USE_VTK &quot;Use VTK (The Visualization Toolkit) (some applications need this)&quot; OFF)<BR>
IF(USE_VTK)<BR>
&nbsp;&nbsp;FIND_PACKAGE(VTK)<BR>
&nbsp;&nbsp;IF (VTK_FOUND)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;INCLUDE (${VTK_USE_FILE})<BR>
&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;# Test for VTK using std libs<BR>
&nbsp;&nbsp;&nbsp;&nbsp;IF(NOT VTK_USE_ANSI_STDLIB)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MESSAGE(&quot;Warning. &nbsp;Your VTK was not built with the VTK_USE_ANSI_STDLIB &quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;option ON. &nbsp;Link errors may occur. &nbsp;Consider re-building VTK &quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;with this option ON. &nbsp;For MSVC 6, you MUST turn on the VTK &quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;option. &nbsp;ITK will not link otherwise.&quot;)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ENDIF(NOT VTK_USE_ANSI_STDLIB)<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;# Test for VTK building Hybrid<BR>
&nbsp;&nbsp;&nbsp;&nbsp;IF(NOT VTK_USE_HYBRID)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MESSAGE(&quot;Your VTK was not built with the VTK_USE_HYBRID option ON. &nbsp;&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Please reconfigure and recompile VTK with this option before &quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;trying to use it with ITK.&quot;)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SET(VTK_FOUND 0)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ENDIF(NOT VTK_USE_HYBRID)<BR>
&nbsp;&nbsp;ELSE(VTK_FOUND)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MESSAGE(FATAL_ERROR<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Cannot build InsightApplications without VTK. &nbsp;Please set VTK_DIR.&quot;)<BR>
&nbsp;&nbsp;ENDIF(VTK_FOUND)<BR>
<BR>
&nbsp;<BR>
ENDIF(USE_VTK)<BR>
<BR>
# Look for OpenGL.<BR>
FIND_PACKAGE(OpenGL)<BR>
<BR>
IF(OPENGL_INCLUDE_PATH)<BR>
&nbsp;&nbsp;INCLUDE_DIRECTORIES(${OPENGL_INCLUDE_PATH})<BR>
ENDIF(OPENGL_INCLUDE_PATH)<BR>
<BR>
# Add an option to use or not use FLTK (<a href="http://www.fltk.org)">http://www.fltk.org)</a><BR>
OPTION(USE_FLTK &quot;Use FLTK (The Fast Light Toolkit) for GUI (some applications need this)&quot; OFF)<BR>
IF(USE_FLTK)<BR>
&nbsp;&nbsp;FIND_PACKAGE(FLTK)<BR>
&nbsp;&nbsp;IF(FLTK_FOUND)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;INCLUDE_DIRECTORIES(${FLTK_INCLUDE_DIR})<BR>
&nbsp;&nbsp;ELSE(FLTK_FOUND)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MESSAGE(FATAL_ERROR<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Cannot build InsightApplications without FLTK. &nbsp;Please set FLTK_DIR.&quot;)<BR>
&nbsp;<BR>
&nbsp;&nbsp;ENDIF(FLTK_FOUND)<BR>
ENDIF(USE_FLTK)<BR>
<BR>
# The fluid-generated fltk sources have many warnings. &nbsp;This macro<BR>
# will disable warnings for the generated files on some compilers.<BR>
MACRO(ITK_DISABLE_FLTK_GENERATED_WARNINGS files)<BR>
&nbsp;&nbsp;IF(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 1.6)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;IF(CMAKE_COMPILER_IS_GNUCXX)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FOREACH(f ${files})<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;STRING(REGEX REPLACE &quot;\\.fl$&quot; &quot;.cxx&quot; SRC &quot;${f}&quot;)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;STRING(REGEX REPLACE &quot;.*/([^/]*)$&quot; &quot;\\1&quot; SRC &quot;${SRC}&quot;)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SET_SOURCE_FILES_PROPERTIES(${SRC} PROPERTIES COMPILE_FLAGS -w)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ENDFOREACH(f)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ENDIF(CMAKE_COMPILER_IS_GNUCXX)<BR>
&nbsp;&nbsp;ENDIF(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 1.6)<BR>
ENDMACRO(ITK_DISABLE_FLTK_GENERATED_WARNINGS)<BR>
<BR>
# Macro for adding resources to GUI application on the Mac<BR>
#<BR>
IF(APPLE)<BR>
&nbsp;&nbsp;FIND_PROGRAM(ITK_APPLE_RESOURCE Rez /Developer/Tools)<BR>
&nbsp;&nbsp;FIND_FILE(ITK_FLTK_RESOURCE mac.r /usr/local/include/FL)<BR>
&nbsp;&nbsp;IF(NOT ITK_FLTK_RESOURCE)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;MESSAGE(&quot;Fltk resources not found, GUI application will not respond to mouse events&quot;)<BR>
&nbsp;&nbsp;ENDIF(NOT ITK_FLTK_RESOURCE)<BR>
<BR>
&nbsp;&nbsp;MACRO(ADD_GUI_EXECUTABLE name sources)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ADD_EXECUTABLE(${name} ${sources})<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SET(EXEC_PATH ${EXECUTABLE_OUTPUT_PATH}) <BR>
&nbsp;&nbsp;&nbsp;&nbsp;IF(NOT EXEC_PATH)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SET(EXEC_PATH ${CMAKE_CURRENT_BINARY_DIR})<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ENDIF(NOT EXEC_PATH)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IF(ITK_APPLE_RESOURCE)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ADD_CUSTOM_COMMAND(SOURCE ${name}<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;COMMAND ${ITK_APPLE_RESOURCE}<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ARGS -t APPL ${ITK_FLTK_RESOURCE} -o <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;${EXEC_PATH}/${name}<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TARGET ${name})<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ENDIF(ITK_APPLE_RESOURCE)<BR>
&nbsp;&nbsp;ENDMACRO(ADD_GUI_EXECUTABLE)<BR>
ELSE(APPLE)<BR>
&nbsp;&nbsp;MACRO(ADD_GUI_EXECUTABLE name sources)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ADD_EXECUTABLE(${name} ${sources})<BR>
&nbsp;&nbsp;ENDMACRO(ADD_GUI_EXECUTABLE)<BR>
ENDIF(APPLE)<BR>
<BR>
#<BR>
<BR>
#Build the Auxiliary directory on which many applications depend<BR>
SUBDIRS(Auxiliary)<BR>
<BR>
#Build the example of how to do simple scalar anisotropic diffusion<BR>
#on a PNG image<BR>
SUBDIRS (AnisotropicDiffusionImageFilter)<BR>
<BR>
#Build the example of various methods of segmentation using level sets.<BR>
SUBDIRS (LevelSetSegmentation)<BR>
<BR>
#Build the example of how to create a static library for <BR>
# select filters in itk.<BR>
SUBDIRS (ITKFilterLib)<BR>
<BR>
#Build the example of how to create a static library for <BR>
# the multi-resolution mutual information registration framework in itk.<BR>
SUBDIRS (ITKRegistrationLib)<BR>
<BR>
#Build the parameter file parser necessary for several applications that follow<BR>
SUBDIRS(StreamedWatershedSegmentation/ParameterFileParser)<BR>
<BR>
# Build the StreamedWatershedSegmentation example<BR>
#SUBDIRS(StreamedWatershedSegmentation)<BR>
<BR>
# Build the AntiAliasBinaryImageFilter example<BR>
SUBDIRS(AntiAliasBinaryImageFilter)<BR>
<BR>
# Build the SimpleLevelSetsExample<BR>
SUBDIRS(SimpleLevelSetsExample)<BR>
<BR>
# Build the FloodFilledSpatialFunctionExample<BR>
SUBDIRS(FloodFilledSpatialFunction)<BR>
<BR>
# Build the Multiresolution Registration example<BR>
SUBDIRS(MultiResMIRegistration)<BR>
<BR>
# Build the MI Validation application<BR>
SUBDIRS(MIValidation)<BR>
<BR>
# Build the IBSR Validation applications<BR>
SUBDIRS(IBSRValidation)<BR>
<BR>
# Build the multichannel tissue classification validation<BR>
SUBDIRS(MultichannelTissueClassificationValidation)<BR>
<BR>
# Build the DICOMApp example to output raw and png versions of DICOM file<BR>
SUBDIRS(DICOMApp)<BR>
<BR>
#Build the examples of various fourth-order level set PDEs <BR>
SUBDIRS (LevelSetSurfaceProcessing)<BR>
<BR>
# Applications requiring MetaImages and Fltk GUI <BR>
IF(FLTK_FOUND)<BR>
&nbsp;&nbsp;IF(WIN32)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;ADD_DEFINITIONS(-DWIN32)<BR>
&nbsp;&nbsp;ENDIF(WIN32)<BR>
&nbsp;&nbsp;SUBDIRS(DistanceMapFilter)<BR>
&nbsp;&nbsp;SUBDIRS(DicomImageViewer)<BR>
&nbsp;&nbsp;SUBDIRS(GaussianFilter)<BR>
&nbsp;&nbsp;SUBDIRS(Curves2DExtractor)<BR>
&nbsp;&nbsp;SUBDIRS(Morphogenesis)<BR>
&nbsp;&nbsp;SUBDIRS(MutualInformationEuler2DRegistration)<BR>
&nbsp;&nbsp;SUBDIRS(ImageRegistration)<BR>
&nbsp;&nbsp;SUBDIRS(ImageRegistration2D)<BR>
&nbsp;&nbsp;SUBDIRS(LandmarkInitializedMutualInformationRegistration)<BR>
&nbsp;&nbsp;SUBDIRS(RawImageReaderViewer)<BR>
&nbsp;&nbsp;SUBDIRS(VoronoiSegmentation)<BR>
&nbsp;&nbsp;SUBDIRS(SimpleFuzzyConnectedness)<BR>
&nbsp;&nbsp;SUBDIRS(ThresholdSegmentationLevelSetFltkGui)<BR>
&nbsp;&nbsp;IF(VTK_FOUND)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(RegionGrowingSegmentation)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(ThresholdSegmentationLevelSet)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(FastMarchingLevelSet)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(ShapeDetectionLevelSet)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(GeodesicActiveContour)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(SegmentationEditorFltkGui)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(SNAP)<BR>
&nbsp;&nbsp;ENDIF(VTK_FOUND)<BR>
&nbsp;&nbsp;SUBDIRS(ImageViewer)<BR>
&nbsp;&nbsp;SUBDIRS(ImageColorViewer)<BR>
ENDIF(FLTK_FOUND)<BR>
<BR>
# MetaImage Utilities<BR>
SUBDIRS(MetaImageImporter)<BR>
SUBDIRS(MetaImageReadWrite)<BR>
<BR>
# Test the conditions for building the MRIBiasCorrection example<BR>
SUBDIRS(MRIBiasCorrection)<BR>
<BR>
# Add an option to build FEM applications<BR>
SUBDIRS(FEM)<BR>
<BR>
# Add an option to build or not build the FuzzyConnectedness example<BR>
SUBDIRS(FuzzyConnectedness)<BR>
<BR>
# Add an option to build or not build the<BR>
# GaussianMinimumErrorClassifier example<BR>
SUBDIRS(GaussianMinimumErrorClassifier)<BR>
<BR>
# Add an option to build or not build the EllipsoidInteriorExteriorSpatialFunction example<BR>
SUBDIRS(EllipsoidInteriorExteriorSpatialFunction)<BR>
<BR>
# Add an option to build or not build the SymmetricEllipsoidInteriorExteriorSpatialFunction example<BR>
SUBDIRS(SymmetricEllipsoidInteriorExteriorSpatialFunction)<BR>
<BR>
# Test the conditions for building the ThinPlateSplines example<BR>
IF(VTK_FOUND)<BR>
&nbsp;&nbsp;IF(FLTK_FOUND)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(ThinPlateSplines)<BR>
&nbsp;&nbsp;ENDIF(FLTK_FOUND)<BR>
<BR>
&nbsp;&nbsp;IF(VTK_WRAP_TCL)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(MRIRegistration vtkITK SegmentationEditor)<BR>
&nbsp;&nbsp;ENDIF(VTK_WRAP_TCL)<BR>
&nbsp;&nbsp;<BR>
&nbsp;&nbsp;SET (VTK_AND_ITK_WRAPPED 0)<BR>
&nbsp;&nbsp;IF(VTK_WRAP_PYTHON AND ITK_CSWIG_PYTHON)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SET(VTK_AND_ITK_WRAPPED 1)<BR>
&nbsp;&nbsp;ENDIF(VTK_WRAP_PYTHON AND ITK_CSWIG_PYTHON)<BR>
&nbsp;&nbsp;IF(VTK_WRAP_TCL AND ITK_CSWIG_TCL)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SET(VTK_AND_ITK_WRAPPED 1)<BR>
&nbsp;&nbsp;ENDIF(VTK_WRAP_TCL AND ITK_CSWIG_TCL)<BR>
&nbsp;&nbsp;<BR>
&nbsp;&nbsp;IF(VTK_AND_ITK_WRAPPED)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;SUBDIRS(ConnectVTKITK)<BR>
&nbsp;&nbsp;ENDIF(VTK_AND_ITK_WRAPPED)<BR>
&nbsp;&nbsp;<BR>
ENDIF(VTK_FOUND)<BR>
<BR>
LINK_LIBRARIES (<BR>
ITKAlgorithms<BR>
ITKCommon<BR>
ITKBasicFilters <BR>
)<BR>
<BR>
# If the version of CMake was too old, complain and build nothing.<BR>
# These should be the last lines in this file.<BR>
ELSE(&quot;${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}&quot; GREATER 1.5)<BR>
&nbsp;&nbsp;MESSAGE(SEND_ERROR<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;This version of CMake is too old to build InsightApplications. &nbsp;&quot;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Please upgrade to CMake 1.6.&quot;)<BR>
ENDIF(&quot;${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}&quot; GREATER 1.5)<BR>
<BR>
<FONT COLOR="#0000FF">*******************************************************<BR>
Yingli Fan<BR>
</FONT></SPAN></FONT><SPAN STYLE='font-size:12.0px'><FONT COLOR="#0000FF"><FONT FACE="Monaco, Courier New">Laboratory for Bioimaging and Anatomical Informatics<BR>
</FONT><FONT FACE="Verdana, Helvetica, Arial">Department of Neurobiology &amp; Anatomy<BR>
Drexel University, College of Medicine<BR>
2900 Queen Lane PA 19129<BR>
Tel: 215-9918455 Fax: 215-843-9367<BR>
Email: Yingli.Fan@drexel.edu &nbsp;&nbsp;<BR>
*******************************************************<BR>
</FONT></FONT><FONT FACE="Verdana, Helvetica, Arial"><BR>
</FONT></SPAN>
</BODY>
</HTML>