function ToonNawInfo(id){
	var links = parseInt((screen.width - 364) / 2);
	var boven = parseInt((screen.height - 182) / 2);

	var windowInfo = "toolbar=no,status=no,width=364,height=";
	windowInfo += "182,directories=no,scrollbars=no,left=" + links;
	windowInfo += ",location=no,resize=no,menubar=no,top=" + boven;
	gInfoWindow = window.open ("/nawinfo.html?id=" + id, "infoWindow", windowInfo);
}

function DecrapifyMSWordHTML(html) {
	html = html.replace(/ <\/o:[pP]>/g, ""); // Remove all instances of nasty Word tags
  // html = html.replace(/o:/g, ""); // Delete all o: prefixes - May screw up text if turned on
	html = html.replace(/<[pP]>&nbsp;<\/[pP]>/g, ""); // Delete all empty paragraph tags	
  html = html.replace(/<[pP]><\/[pP]>/g, ""); // Delete all empty paragraph tags
  html = html.replace(/<[pP]> <\/[pP]>/g, ""); // Delete all empty paragraph tags	
	html = html.replace(/<[pP]>/g, ""); // Delete all empty paragraph tags		
	return html;
}


