 function note() {
  d=window.open("","","height=300,width=300").document;
  d.open("text/html");
  zs="<html><head><title>Info</title></head>"+
     "<body bgcolor=00000 text=D0D0D0>"+
	"<basefont face=Arial size=2>"+
	"I am Dr. Mohan Leslie Noone, Consultant Neurologist at <a href=\"http://www.babymhospital.org\" target=\"__blank\">Baby Memorial Hospital</a>, Calicut"+
	" S.India.<br><br>"+
  	"As you can see, I am an amateur java programmer.<br><br>";
  d.writeln(zs);
  zs="All the applets are free for personal (non-commercial) use.  They are distributed without warranty of any kind.  <br>"+
	"<br> <a href=\"mailto:drnoone@fastmail.fm\">drnoone@fastmail.fm</a></body>";
  d.writeln(zs);
  d.close();
  }


