// MAKE FRAMED
// Ensures page being viewed is framed.
if (window.top == window.self) {
	var thisPage = window.location.href;
	var urlIndex;
	var	i = 0;

	while (i < 3) {
		urlIndex = thisPage.indexOf("/");
		thisPage = thisPage.substring(urlIndex + 1, thisPage.length);
		i++;
		//alert("Index = " + urlIndex + " URL = " + thisPage + " Count = " + i);
	}
	top.location.href = "/default.aspx?main=" + thisPage;
}