var managing = false;

function getpage() {
	var loc=String(document.location);
	loc=loc.split("/");
	//to edit php, uncomment line 7 and comment out 8 & 9, AND swap comments on line 16 & 17
	//loc=loc[loc.length-1];
	loc=loc[loc.length-1].split(".");
	loc=loc[loc.length-2];
	if (loc == null) { loc = "index"; }
	return loc;
}

function doedt() {
	loc=getpage();
	document.location = '/cms/editor.php?fn='+loc;
	//document.location = '/cms/editor.php?fn='+loc+'.htm';
}

function IEKeyCap() {
	if (!managing) {
		if (window.event.shiftKey) {
			if (window.event.keyCode == 69) {
				doedt();
			}
			if (window.event.keyCode == 101) {
				doedt();
			}
		}
	} else {
		loc=getpage();
		document.location = loc+'.htm';
	}
}
document.onkeypress = IEKeyCap;