// JavaScript Document
if (navigator.appName=="Microsoft Internet Explorer" && navigator.userAgent.indexOf('Mac') != -1) {
	window.document.location.href="incompatible.html";
} else if (navigator.userAgent.indexOf("Netscape")!=-1 && navigator.userAgent.indexOf('Mac') != -1) {
	window.document.location.href="indexNetscapeMac.html";
}