/* detect if the page has been loaded without the frameset
   and load in frame context
*/

if (top == window) {
	var url = new String(location.href);
	var content = url.substring(url.lastIndexOf("/") + 1, url.lastIndexOf("."));
	location.href = "default.asp?content=" + content;
}
