
////////////////////////////////////////////////////////////////////////////////////////////
// Mac Sniffer and Platform Sniffer                                                       //
// From "Laurent", https://lists.latech.edu/pipermail/javascript/2002-January/002818.html //
////////////////////////////////////////////////////////////////////////////////////////////

d = document;
function brow(){
this.ie = (d.all)? true:false;
this.ns = (d.layers)? true:false;
this.ns6 = (d.getElementById&&!document.all)? true:false;
this.mac = (navigator.appVersion.indexOf("Mac")!=-1)? true:false;
this.win = (navigator.appVersion.indexOf("Win")!=-1)? true:false;
}
var bw = new brow()

if (bw.mac){
	window.location.href='indexlink.html'
}


