function fixAnnounce(iframe) {

		// Fix white space and word wrapping
		var pre = iframe.getElementsByTagName('pre')[0];
		var styling = "word-wrap: break-word; white-space: pre-wrap;";
		pre.style.wordWrap = "break-word";
		pre.style.whiteSpace = "pre-wrap";
		
		// Fix links bar if browser is Firefox
		//if(navigator.userAgent.indexOf('Firefox')) {
		//	alert("it works");
				//var list = iframe.getElementById('navcontainer');
				//styling = "position: relative; top: -20px;";
				//list.style = styling;
		//}
}
