//Script to call browser specific stylesheet...

// This script uses absolute address, not relative! Updating the style locally will have no effect!

if (navigator.userAgent.indexOf('Mac')!=(-1) && navigator.userAgent.indexOf('MSIE 5.0')==(-1)) { 

  document.write("<link rel=stylesheet type='text/css' href='http://www.benchmarking.com/styles/mac.css'>"); 

} else { 

  	document.write("<link rel=stylesheet type='text/css' href='http://www.benchmarking.com/styles/mac.css'>"); 

}