function yourbrowser()
{
	document.write('  <div class="sidebar-bump"><div>');
	document.write('<h1>Your Browser</h1>');
	var outStr = "<p>From a developers point of view you are using ";
	if (bs_opera)
		outStr += "Opera ";
	if (bs_ie)
		outStr += "InternetExplorer ";
	if (bs_gecko)
		outStr += "Mozilla (=Netscape =Firefox =Gecko) ";
	if (bs_legacy)
		outStr += "Legacy Netscape ";
	if (bs_other)
		outStr += "a browser I don;t know. ";
	if (!bs_other)
		outStr += bs_verfull.toString()+". ";
	if (bs_opera)
		outStr += "Great Browser!";
	if (bs_ie)
		outStr += "Shouldn't you be thinking about switching?";
	if (bs_gecko)
		outStr += "That is the way to go! Spread the word!";
	if (bs_legacy)
		outStr += "Can you even read this? Update to the latest browser!";
	if (bs_other)
		outStr += "If the browser adheres to standards... great!";
	document.write(outStr);
	document.writeln('</p></div></div>');
}
yourbrowser();

function rendermode()
{
	if ((bs_gecko) || ((bs_opera) && (bs_vermajor>=7)) || ((bs_ie) && (bs_vermajor>=6)))
		document.writeln(" (Using "+document.compatMode+"-Mode.)");
}
