Here is the program my friend
<html>
<head>
</head>
<body>
<input type="button" Value="Browser Name" onclick="alert(navigator.appName), document.bgColor = 'Blue'">
<input type="button" Value="Browser Version" onclick="alert(navigator.appVersion), document.bgColor = 'Red'">
<input type="button" Value="Cookies Enabled" onclick="alert(navigator.cookieEnabled), document.bgColor = 'Green'">
<input type="button" Value="Platform" onclick="alert(navigator.platform), document.bgColor = 'white'">
<input type="button" Value="User-agent header" onclick="alert(navigator.userAgent), document.bgColor = 'yellow'">
</body>
</html>
Enjoy.
May 1, 2010