function EditContent()
{
	storage.set("path", location.pathname.substring());
	if (location.pathname.substring(location.pathname.lastIndexOf('/')+1) == "index.html")
	{
	location.href = "editor/editorlogin.html";
	}
	if (location.pathname.substring(location.pathname.lastIndexOf('/')+1) != "index.html")
	{
	location.href = "../editor/editorlogin.html";
	}
}
