******* Page Heading *******


Alternate Pages:

The code below is a link, but before the new page is loaded, the browser checks the user screen resolution. Then depending upon the resolution (800x600 or 1024x768) alternative pages are displayed.

<SCRIPT language="JavaScript">
<!--
if ((screen.width>=1024) && (screen.height>=768))
{
window.location="highres.html";
}
else
{
window.location="lowres.html";
}
//--> </SCRIPT>

Example:

Click on the link below