<!--
document.write('Using <strong>' + jsvers + "</strong> to detect...<br />");
if(pluginlist.indexOf("Flash")!=-1) document.write('<strong>Flash</strong> is installed.<br />\n');
if(pluginlist.indexOf("QuickTime")!=-1) document.write('<strong>Quicktime</strong> is installed.<br />\n');
if(pluginlist.indexOf("Windows Media Player")!=-1) document.write('<strong>Windows Media Player</strong> is installed<br />\n');
if(pluginlist.indexOf("Java")!=-1) document.write('<strong>Java</strong> is installed<br />\n');
if(pluginlist.indexOf("Shockwave")!=-1) document.write('<strong>Shockwave</strong> is installed<br />\n');
if(pluginlist.indexOf("RealPlayer")!=-1) document.write('<strong>Realplayer</strong> is installed<br />\n');
if(pluginlist.indexOf("Acrobat Reader")!=-1) document.write('<strong>Acrobat Reader</strong> is installed<br />\n');
if(navigator.userAgent.indexOf('Win') != -1) document.write('You are running <strong>Windows</strong><br />\n');
if(navigator.userAgent.indexOf('Mac') != -1) document.write('You are using a <strong>Mac</strong><br />\n');
document.write('Your resolution is <strong>' + screen.width + 'x' + screen.height + '</strong><br />\n');
document.write('Your color depth is set at <strong>' + screen.colorDepth + '</strong><br />\n');
////
/// http://www.javascriptkit.com/script/script2/browserkind.shtml
//
if (document.all) var version=/MSIE \d+.\d+/

if (!document.all)
{
	document.write('Your Browser is <strong>' + navigator.appName + ' ' + navigator.appVersion.substring(0,4) + '</strong>\n<br />');
}
else
{
	document.write('Your Browser is <strong>' + navigator.appVersion.match(version) + '</strong>\n<br />');
}
//-->