// JavaScript Document
var sPath = window.location.pathname;
var sGet = location.search;
var nPage = sPath.substr(sPath.lastIndexOf('/') + 1, sPath.lastIndexOf('.') - 1);
var gPage = sGet.substr(sGet.indexOf('?') + 1);

if (parent.cPage != undefined) {
	parent.changeFrm(nPage);
} else {
	document.location.href = "index.php?page=" + nPage + '&' + gPage;
}

