// JavaScript Document
function myprint() {
	window.parent.content.focus();
	window.print();
}

function bookmark(){
	if (navigator.appName == 'Microsoft Internet Explorer' && 
		parseInt(navigator.appVersion) >= 4)
{
	window.external.AddFavorite(location.href,document.title);
}else
{var msg = "Remember to bookmark this page!";
if(navigator.appName == "Netscape") msg += "  (CTRL-D)";
document.write(msg);
}
}
		
