JS SCREEN OBJECT EXAMPLE
Run
<!doctype html>
	<head>
		<title>JS Screen Object Example</title>
	</head>
	<body>
		<h3>JavaScript Screen Object</h3>

		<script>
			document.writeln("Total Height: " + screen.height +"<br>");
            document.writeln("Total Width: " + screen.width +"<br>");
		</script>
	</body>
</html>