function printerFriendlyPage() {
	setCookie('HSLC_Print','true');	
	var href = window.location.href;
	
	// if exists, remove anchor from the end of url
	var pos = href.indexOf('#');
	if (pos > -1) {
		href = href.substring(0, pos);
	}
	
	href = href+((href.indexOf('?')>-1)?'&':'')+';'+new Date().getTime();
	window.location.href = href;
}
