// JavaScript Document
//////////////////////mailing a web page/////////////////////
function mailpage()
{
  mail_str = "mailto:?subject= Diani Beach Hospital website: " + document.title;
  mail_str += "&body= I recommend Doc Rekhi's (dianibeachhospital.com) tip -- " + document.title;
  mail_str += ". You should check this out at, " + window.location.href; 
  window.location.href = mail_str;
}
//////////////////////bookmark a page////////////////////////////
<!-- 
// Hide script from older browsers 
// script by http://www.hypergurl.com  
//var urlAddress= ""; 
//var pageName = "About diani Beach Hospital"; 
function addToFavorites() { 
var url = window.location.href;
var name = document.title;

if (window.external) { window.external.AddFavorite(url,name) 
} else { 
alert("Sorry! Your browser doesn't support this function."); 
 } 
} // -->
////////////////print page////////////////////////

