﻿/* WriteScreenResolution.js */// This JavaScript code was retrieved from The Color Tool.// Visit www.thecolortool.comvar xy = new ScreenResolution();document.write("Your monitor's screen resolution <strong>Width</strong> is presently set to <strong>" + xy.screenWidth + "</strong> and your monitor's screen resoltuion <strong>Height</strong> is presently set to <strong>" + xy.screenHeight + "</strong>. If these numbers are equal to or greater than <strong>1024</strong> and <strong>768</strong>, you should be able to view our web site and the majority of the web pages on the Internet just fine. However, our site will look even better if your monitor is set to 1152 x 864 or higher. If the numbers displayed here are less than 1024 x 768, the minimum suggested values to view our web site with and you don't know how to change your screen resolution, you can click the <strong>Change Screen Resolution</strong> link displayed below to find an easy to read step-by-step printable and downloadable document that will show you how.")function ScreenResolution(){this.screenWidth = screen.width;this.screenHeight = screen.height;}