 var url = top.location.href;
 var description = document.title;
 var urlAddress = top.location.href;
 var pageName = document.title;
 var title = document.title;

function bookmark(url, description)
{
nsmsg="Click OK and then press CTRL+D to add a bookmark to this site." 

if (navigator.appName=='Microsoft Internet Explorer')
{ window.external.AddFavorite(url, description);
} else if (navigator.appName=='Netscape')
{
alert(nsmsg);
}
}


function addToFavorites() {
  if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if (window.external)  {
   window.external.AddFavorite(urlAddress,pageName);
  }
  else  if(window.opera && window.print) { // Opera Hotlist
		return true; }
}
 

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

function linkpage() {
	mail_str = "mailto:?subject=Link Reminder: " + document.title;
	mail_str += "&body=This is a reminder to link to this page:%0D%0D" + document.title;
	mail_str += ".%0D%0DView it at: " + location.href; 
	location.href = mail_str;
}

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}

function openWin( windowURL, windowName, windowFeatures ) { 
		return window.open( windowURL, windowName, windowFeatures ) ; 
} 