function doBookmark(){
	var NSstring = "Click OK then [Ctrl + D] to bookmark this page";
	var OPstring = "Click OK then [Ctrl + T] to bookmark this page";
	var OTHstring = "Use the your browser's menu to bookmark this page!"

	var agt = navigator.userAgent.toLowerCase();
	var app = navigator.appName.toLowerCase();
	var ieAgent = agt.indexOf('msie');
	var nsAgent = app.indexOf('netscape');
	var opAgent = app.indexOf('opera');

	if (ieAgent!= -1) {
		window.external.addFavorite(location.href,document.title);
	} else if (nsAgent!= -1){
		alert(NSstring);
	} else if (opAgent!= -1){
		alert(OPstring);
	} else {
		alert(OTHstring);
	}
}
function initMail(form) 
{
	text = "Check out this page:  " + window.location;
	form.message.value = "Hi " + form.sendto.value + " (" + form.to.value + "):\n\n" + text + "\n\nYour Friend,\n" + form.sendername.value + "(" + form.senderemail.value + ")";
	return (form.to.value != "");
}
