function newsPopup(popuptext)
{
	newWindow = window.open("about:blank","_blank","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=300");
	newWindow.document.write("<html><head><link rel=stylesheet href=tnc-popup.css type='text/css'><title>More Information</title></head><body>");
	newWindow.document.write(unescape(popuptext));
	newWindow.document.write("</body></html>");
	newWindow.document.title = "More Information";
}