// require /_js/browserSniffer/macie.js
// if mac ie, hide 'hideId', show compat browser
function showCompatBrowser(hideId) {
	if (isMacIe()) {
		he(hideId);
		var html = '';
	html = '' +
	'<h2>Please Use Another Browser</h2>'+
	'<div>' +
	'Currently this browser is not supported for this website.  Please use one of the following browser:<br><br>' +
	'<li>Safari 1+</li>' +
	'<li>FireFox 1+ for Mac (<a href="http://www.mozilla.org/products/firefox/all" target="_blank">download latest version</a>)</li>' +
	'</div>' +
	'';
		document.write(html);
	}
}