<!--------


document.write("<p style=\"color:#009900;\"><strong>JavaScript is enabled and working.</strong></p>");


if (navigator.cpuClass != null) document.write ("<p>Your CPU type: " + navigator.cpuClass + "<br>")
if (screen.width != null) document.write ("Your screen resolution size is: " + screen.width + " X " + screen.height +"<br>")
if (screen.availWidth != null) document.write ("Your browser's available size is : " + screen.availWidth + " X " + screen.availHeight + "<br>")
if (screen.colorDepth != null) document.write ("Your screen color depth is: " + screen.colorDepth + " bit <br>")
if (history.length != null) document.writeln("<p><strong>The number of web pages you visited in this session in this window: " + history.length + "</strong><br>")
today = new Date()
if (today != null) document.writeln("The date/time on your computer and time zone is: " + today + "<br>")
if (today.toLocaleString() != null) document.writeln("Time/date in your locale format: " + today.toLocaleString() + "<br>")

	numPlugins = navigator.plugins.length
	if (numPlugins > 0) document.write("<p><strong>The following plug-ins are detected on your system:</strong></p>")
	
	if (navigator.plugins) 
{


	for (i = 0; i < numPlugins; i++) 
	{
		plugin = navigator.plugins[i]
		document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + plugin.name + '<br>' + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----' +plugin.description + " - ")
		document.writeln(plugin.filename.substring(plugin.filename.lastIndexOf("\\")+1,plugin.filename.length)+ '<br>')
	}
}


//-->