/******************************************************************************

	FILE:			scripts.js
	
	DESCRIPTION:	This file contains the javascript that prints and bookmarks 
					the pages.
					
					Bookmarking automatically is only supported by IE 5 on a PC,
					so we display a message in the other browsers.
					
					Printing via JS is not supported in all browsers.
	
	VERSIONS:
		08-21-2001 by fred.peck@tesser.com
			file created
	
	VARIABLES
		( - none - )

******************************************************************************/

function bookmarkPage() {
	
	if ((navigator.appName == "Netscape") || (navigator.platform == "MacPPC") ) {
		
		if (navigator.platform == "MacPPC")
			alert("Press OK below, then press COMMAND-D to bookmark this page");
		
		else
			alert("Press OK below, then press CTRL-D to bookmark this page");
	
	} else  
					
		window.external.AddFavorite(parent.location.href, document.title);
		
}
	


function printMe() {
	window.print();
}
