|

The National Library of Medicine Medical Subject Headings (MeSH)
is used for indexing of articles for the IMEMR. A minimum of
four subject headings in addition to categories are assigned
to each article. Trained healthcare professionals, index,
review, proofread and quality control the Index. Moreover,
publishers of medical journals provide the Regional Office
with their publications on a regular basis in exchange for
the Eastern Mediterranean Health Journal.
The Index is
published on a
bimonthly basis as a Current Contents Bulletin of which 500
copies are produced and distributed to libraries, WHO
collaborating centres, journal publishers, researchers,
medical colleges, WHO Representatives’ offices, Ministries
of Health and other individuals and institutions in the
Region and beyond.
The full
database is published on CD-ROM on a six-monthly basis and
distributed to medical libraries in the Region. The Index is
distributed free of charge regardless of the format or the
recipient. The Index is published on the Internet within the
EMRO website
http://www.emro.who.int/HIS/VHSL/Imemr.htm
The Index includes currently over 88,000 records from
19 countries of the Region covering 391 source journals.
African countries (7) contribute 55.5% of the articles in
the database while 12 countries in Asia contribute 42.4%;
three countries (Afghanistan, Djibouti and Somalia) have no
contribution currently.
The Index is backed up by a document delivery service since
all journals contributing to the Index are available in
paper copies in the Regional Office.
<%
Set cd = CreateObject("ChartDirector.API")
' The data for the pie chart
data = Array(25, 18, 15, 12, 8, 30, 35)
' The labels for the pie chart
labels = Array("Labor", "Licenses", "Taxes", "Legal", "Insurance", "Facilities", _
"Production")
' Create a PieChart object of size 450 x 240 pixels
Set c = cd.PieChart(450, 240)
' Set the center of the pie at (150, 100) and the radius to 80 pixels
Call c.setPieSize(150, 100, 80)
' Add a title at the bottom of the chart using Arial Bold Italic font
Call c.addTitle2(cd.Bottom, "Project Cost Breakdown", "arialbi.ttf")
' Draw the pie in 3D
Call c.set3D()
' add a legend box where the top left corner is at (330, 40)
Call c.addLegend(330, 40)
' modify the label format for the sectors to $nnnK (pp.pp%)
Call c.setLabelFormat("{label} ${value}K<*br*>({percent}%)")
' Set the pie data and the pie labels
Call c.setData(data, labels)
' Explode the 1st sector (index = 0)
Call c.setExplode(0)
' output the chart
Response.ContentType = "image/png"
Response.BinaryWrite c.makeChart2(cd.PNG)
Response.End
%>
|
|