/*  Script Copyright © 2009-2010 artefficient.com
Adding event listener for child iframe document. Whe "Shortcut" is detected on the CHILD the focus has to be tes to the PARENT document.
Without this function Go Left and Go Right functions will not work
*/
function keyDownIframe(evt) {
	evt = (evt) ? evt : window.event
	if(evt.ctrlKey && evt.shiftKey) {	
		parent.focus();
	}
}

document.onkeydown = keyDownIframe; // document.keypress does NOT work in IE