// JavaScript Document
function mKeyPress() {
    if (window.event.ctrlKey) {
		if (window.event.keyCode == 26) 
		$.fn.colorbox({
			href:'/pulse/index.php',
			width:"900px",opacity:0.5,height:"750px",iframe:true,title:true,title: 'LAT Content Editing',
			onClosed:function(){window.location.reload();}
			})
    }
}
        document.onkeypress = mKeyPress;

