var _U = "undefined";
function fnCheckKey(){
	try{
		if (event.ctrlKey && event.shiftKey){
			switch (event.keyCode){
				case 116:
					fnToggle();
					break;

				default:
					break;
			}
		}
	}catch(e){
		fnLog(e, "fnCheckKey", this.name);
	}
}


function fnToggle(){
	try
	{
		window.location = intraa;
	}
	catch(e){
		fnLog(e, "fnToggle", this.name);
	}
}

function fnInit(){
	try{
		if (typeof document.body != _U && document.body != null){
			document.body.attachEvent('onkeydown', fnCheckKey);
		}
	}catch(e){
		fnLog(e, "fnInit", this.name);
	}
}

function fnLog( e, fn, f ){
	alert(f + "\n" + fn + "\n" + e.name + "\n" + e.description + "\n" );
}
if(window.createPopup)
	window.onload = fnInit;
