function printPage(){
	var href = '';
	pos = document.location.href.indexOf("#");
	if (pos != -1){
		href = document.location.href.substring(0, pos);
	}else{
		href = document.location.href;
	}
	if (href.indexOf("?") > 0){
		href = href+"&print=1";
	}else{
		href = href+"?print=1";
	}
	//window.open(href, '', 'width=800, height=600');
	document.location.href = href;
}