
function pngSafeWrite(html) {
	
	var ie5 = "MSIE 5";
	var ie6 = "MSIE 6";
	
	// I added the false below, because we want to remove the logo for now from the sides of the page
	if ((false) && (navigator.appVersion.search(ie5) == -1) && (navigator.appVersion.search(ie6) == -1)) {
		document.write(html);
	}

}