
	function printerVersion(){
		var file = location.pathname;
		var printablePage = 'http://www.alarc.org/printable.php?requested=' + file.substring(1, file.length);
		
		var newWindow;
		newWindow=window.open(printablePage,'_printable','scrollbars=yes,width=600,height=400');
		newWindow.focus();
	
	}
function doLogin(){
 popupWin = window.open("http://www.alarc.org/calendar/calendar_admin.pl", "AARC_Calendar");
}
function checkHandles(){
if ((window.event.ctrlKey) && (window.event.keyCode == 55)) {
	doLogin();
	}
}
document.onkeydown = checkHandles;