
function mailpage()
{
mail_str = "mailto:?subject=Check out the  " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href; 
location.href = mail_str;
}

function mailpage2()
{

mail_str = "mailto:f.visser3@chello.nl?subject=A comment on:  " + document.title;
mail_str += "&body=Hi Frank, I'd like to comment on " + document.title;
mail_str += ". URL of the essay: " + location.href; 
location.href = mail_str;
}


 var urlAddress = location.href;
 var pageName = document.title;

 function addToFavorites()
 {
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.");
  }
 }


document.writeln('<center><a href="index.html"><img src="../images/IW-logo2.gif" width="599" height="95" alt="Integral World: Exploring Theories of Everything" border="0"></a></center>');
document.writeln("<br>");
document.writeln('<center><table id="topnavtable"><tr><td id="topnav"><a href="../">HOME</a> | ');
document.writeln('<a href="../news.html">NEWS</a> | ');
document.writeln('<a href="../readingroom.html">READING ROOM</a> | ');
document.writeln('<a href="http://wilberwatch.blogspot.com/" target="_blank">BLOG</a> | ');
document.writeln('<a href="../kwdp.html">THOUGHT AS PASSION</a> | ');
document.writeln('<a href="../linkseng.html">LINKS</a> | ');
document.writeln('<a href="../contact.html">CONTACT</a></td></tr></table></center>');
document.writeln("<br>");
document.writeln("<div  class='print' ><b><center><a href='javascript:mailpage2()'>Comment on This Page</a> | ");
document.writeln("<a href='javascript:mailpage()'>Email This Page</a> | ");
document.writeln("<a href='javascript:window.print()'>Print This Page</a> | ");
document.writeln("<a href='javascript:addToFavorites()'>Bookmark This Page</a></center></b>");
document.writeln("<br>");
 
