window.onload = fixSearchResults;

function fixSearchResults() {
	var mainDiv = document.getElementById("main");
	if (mainDiv.innerHTML == '') {
		mainDiv.innerHTML = '\
		<h2>UnRadio Search</h2>\
		<div class="post">\
			<h3>No Programmes Found!</h3>\
			<div>\
				<p>Are you struggling to find the <em>perfect</em> UnRadio programme? Just try some of these simple steps to achieve enlightenment:</p>\
				<ul>\
					<li>Ensure that your spelling is the pinnacle of perfection.</li>\
					<li>Try a less-specific search with fewer of those &ldquo;word&rdquo; things.</li>\
					<li>Remember: quitters never win... much.</li>\
					<li>When all else fails, try a new, reformulated search!</li>\
					<!--[if IE]><li>And for goodness sake, <a title="Get Firefox. Seriously." href="http://getfirefox.com/">get a better Web browser.</a></li><![endif]-->\
				</ul>\
			</div>\
		</div>';
	}
}