
<!--

function PrintPage() {
if (navigator.appName.indexOf("Microsoft")>=0 && navigator.appVersion.substring(22,23) == 4 || navigator.platform.substring(0,3) == "Mac") {
		alert("Your current browser does not support this button.  Please choose File/Print from your browser's menu.");
	} else {
		window.print();
	}
}

function popup(url,name,width,height) {
// This opens a Javascript window
        if (! width) { width=525; }
        if (! height) { height=525; }
        popwindow=window.open(url,name,'menubar,scrollbars,dependent,width='+width+',height='+height+',left=164,top=4');
}
//-->
