If/Then Screen Resolution Redirection
Description:
Use this code snippet to redirect your visitors to the web page that best fits their screen resolution. For example, if they are using LESS THAN 1024 screen width then GO HERE. If they are using GREATER THAN 1024, GO THERE. If 1024 is the smallest your current design should be seen then use 1023 and 1024 as your over and under dimensions.

Minimum boundary = screen.width <= 1023
Maximum boundary = screen.width >= 1024

Directions:
Edit the pages listed in the code to match the pages you have in your site.
Use the 'Grab Text' buttons to select the code within the adjacent textarea. Then use Control-C or Edit -> Copy to buffer the text for pasting into your document.

Place the code below between the <HEAD> and </HEAD> tags within the HTML document.

Then use Control-C to copy the text into your web page.