var strUrl = self.location.href;
var arrUrl = strUrl.split("/");
var subArea = arrUrl[(arrUrl.length - 2)];
var subPage = arrUrl[(arrUrl.length - 1)];

if (!top.frames[0])
{
	//self.location.replace("http://www.kiethevez.com/default.htm");
	var replaceStr = "http://www.kiethevez.com/relocate.php?subarea=" + subArea + "&subpage=" + subPage;
	self.location.replace(replaceStr);
}else
{
	top.header.setArea(subArea);
}