<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Navigator objects</title>
</head>
<body>
<script type="text/javascript" >
document.write("User Agent Header " + navigator.userAgent +"<br/>");
document.write("Browser Code name: " + navigator.appCodeName + "<br/>");
document.write("Browser name: " + navigator.appName + "<br/>");
document.write("Browser Version: " + navigator.appVersion + "<br/>");
document.write("Cookies Enabled " + navigator.cookieEnabled + "<br/>");
document.write("Platform " + navigator.platform + "<br/>");
</script>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Navigator objects</title>
</head>
<body>
<script type="text/javascript" >
document.write("User Agent Header " + navigator.userAgent +"<br/>");
document.write("Browser Code name: " + navigator.appCodeName + "<br/>");
document.write("Browser name: " + navigator.appName + "<br/>");
document.write("Browser Version: " + navigator.appVersion + "<br/>");
document.write("Cookies Enabled " + navigator.cookieEnabled + "<br/>");
document.write("Platform " + navigator.platform + "<br/>");
</script>
</body>
</html>