/**
 *	This file contains looks for IE5.0 on a Mac
 *	and will redirect the user to a result page
 *
 *	@author Russell Francis
 *	@date 2006-01-13
 */
/**
 */
function redirectMacIE5()
  {
    if( ( navigator.appVersion.toUpperCase().indexOf( 'MSIE 5.0;' ) != -1 ) &&
        ( navigator.appVersion.toUpperCase().indexOf( 'MACINTOSH;' ) != -1 ) )
    {
      window.location="http://www.finearts.ohio.edu/music/mac_ie_5.html";
    }
  }