<!--
	// tests to see if the page was loaded without a parent document (not as part of frames)
	// and pulls page into the frameset IF IE 4 or 5
	if(top==self) { 
		var parent = "index.html"
		var appVer = navigator.appVersion;
		var NS = (navigator.appName == 'Netscape') && ((appVer.indexOf('3') != -1) || (appVer.indexOf('4') != -1));
		var MSIE = (appVer.indexOf('MSIE 4') != -1 || appVer.indexOf('MSIE 5') != -1);
		if (MSIE)
			location.replace(parent);
		else
			location.href = parent;
	}
// -->
