

<!-- 

/*Define a variable to hold the URL of the page that you wish to redirect a Mac MSIE browser to.*/ 

var myURL = "mac.html"; 

/*Replace this URL with your own.*/
/*Determine if the browser is a Mac MSIE browser.*/ 

if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Mac") != -1 ) { 

/*Redirect the Mac MSIE browser to the desired alternate page when the above is true.*/ 

location = myURL; } 
var navURL = "mac.html"; 

/*Replace this URL with your own.*/
/*Determine if the browser is a Mac MSIE browser.*/ 

if (navigator.appName == "Netscape" && navigator.appVersion.indexOf("Mac") != -1 ) { 

/*Redirect the Mac MSIE browser to the desired alternate page when the above is true.*/ 

location = navURL; } 

//--> 


