Teaching Resources

General | Instructions | Cases for Discussion | Lectures | Educational Links | Palliative Care

Palliative Care of the Newborn by Dr. Leslie Harris (Downloads)

  1. Engaging with Children and Families
  2. Relieving Pain and Other Symptoms
  3. Analyzing Ethical Challenges
  4. Responding to Suffering and Bereavement
  5. Improving Communication and Strengthening Relationships
  6. Addressing Personal and Professional Challenges
select * from dirQuery order by #url.sort# /** * Will take a number returned from a File.Filesize, calculate the number in terms of Bytes/Kilobytes/Megabytes and return the result. * v2 by Haikal Saadh * * @param number Size in bytes of the file. (Required) * @return Returns a string. * @author Kyle Morgan (admin@kylemorgan.com) * @version 2, August 7, 2006 */ function fncFileSize(size) { if ((size gte 1024) and (size lt 1048576)) { return round(size / 1024) & " KB"; } else if (size gte 1048576) { return decimalFormat(size/1048576) & " MB"; } else { return "#size# bytes"; } }