function CheckKey(e)
{
	if(typeof window.event != "undefined") {e = window.event;}	// Code for IE :(
	
	if (e.shiftKey && e.ctrlKey && e.keyCode == 67)
	{
		//window.location.href = "brochure.asp?atbranch=true";
		alert("Feature disabled - Please use R2WAY CRM!");
		e.cancelBubble = true;
		if (e.stopPropagation) e.stopPropagation();
	}
	if (e.shiftKey && e.ctrlKey && e.keyCode == 83)
	{
		//window.location.href = "ShopsOnly/";
		alert("Feature disabled - Please contact Head Office");		
		e.cancelBubble = true;
		if (e.stopPropagation) e.stopPropagation();
	}
}

document.addEventListener("keydown", CheckKey, false);
