 			/*
				this bit of code works around a bug in Mozilla. <noscript> tags should be
				inline, but Mozilla renders them as blocks. So we explicity set the display
				attribute in the CSS above, and then use JavaScript to correct it. When JavaScript
				is turned off, the <noscript> tags render correctly, and when it's turned on they're
				invisible.
			*/
			document.write('<style type="text/css">noscript { display: none; }</style>');
