var __capctrl;
var __capshift;
function printkeypresshandler(){	
	if(event.ctrlKey){
		__capctrl = true;
	}
	if(event.shiftKey){
		__capshift = true;
	}
	if(__capctrl && __capshift && event.keyCode == 80){
		__capctrl = false;
		__capshift = false;
		printareas();
	}
}
function printareas(){window.open("/Themes/Content Themes/consolidated/Templates/Print_Page.html");}
function d(id){	return (document.getElementById) ? document.getElementById(id) : document.all[id];}
function getPrintContent(){return d("printArea").innerHTML;}
if(typeof(appendOnKeyUp) == "function")
    appendOnKeyUp(printkeypresshandler);
