

function display_LOGO_macIE(){
	// replace PNG logo [class] with IMG ref...
	// mac IE only!!!!
	
	var isNAV4, isNAV6, isIE, isOPERA, isWIN, isMAC, isFF;

	if (navigator.userAgent.indexOf("Win")>=0){
		isWIN = true;
	}
	if (navigator.userAgent.indexOf("Mac")>=0){
		isMAC = true;
	}

	if (navigator.userAgent.indexOf ("Firefox")>0) {
		isFF = true;
	}

	if (parseInt(navigator.appVersion) >=4) {
		if (navigator.appName == "Netscape") {
			if ((parseInt(navigator.appVersion)==4)) {
				isNAV4 = true;
			} else if (parseInt(navigator.appVersion) >= 5) {
				isNAV6 = true;
			} else if (navigator.userAgent.indexOf("Opera")>0) {
				isOPERA = true;
			}	
		} else {
		isIE = true;
		}
	}

	if(isIE) {
		if(isMAC) {
			var theDiv = document.getElementById("logo");
			var str = '	<table width="140" height="140" border="0" cellpadding="0" cellspacing="0">';
			str += '	<tr>';
			str += '	  <td><img src="images/teefa.png" alt="" width="140" height="140" border="0"></td>';
			str += '	</tr>';
			str += '  </table>';
			theDiv.innerHTML = str;
		}
	}
}
