﻿// JavaScript Document
var lastKeyEvents = '';
$(function() {
	$(document).keydown(function(e) {
		lastKeyEvents = lastKeyEvents + '' + e.which;
		if (lastKeyEvents.length >= 12) {
			//lastKeyEvents = lastKeyEvents.substr(lastKeyEvents.length - 12);
			if (lastKeyEvents == '836983657713')
				window.location.href = 'https://tic.hostfactory.ch/de/news/edit.html?id='+localId;
		}
	});
});
