function printPage(mode) {
	if (mode == 1) {
		alert('For best results, click "cancel" and use the "print this page" button instead.')
	} else {
		url = 'print/' + window.location.pathname.substr(window.location.pathname.lastIndexOf('/')+1);
		if (url == '' || url == '#') { url = 'index.htm'; }	
		printWin = window.open(url,'print','width=200,height=200,menubar=yes');
		printWin.focus();
		printWin.print();
	}
}