<!-- hide
// DBN frameset checker and redirector
if (top == self) {
	var newUrl = "/dbnframe.html?body=" + escape(document.location.href) + "&TITLE=" + escape(document.title);
	var replaceOK = true;
	
	if (navigator.appName.indexOf("Microsoft") > -1) {	
		if (parseInt(navigator.appVersion) < 4) {	
			replaceOK = false;
		}
	}
	if (replaceOK) {
		location.replace(newUrl);
	} else {
		document.location.href = newUrl;
	}	
}
// end hide -->
