|
Very spiffy looking. My only gripe (other than the intro page) is that clicking on the links opens the new site inside your frames. You can fix this with a target=_top inside the link tags. Or, if you'd prefer to open in a new window, the tag is target=_blank
If you're interested, the necessary JavaScript is:
<script language="JavaScript">
<!--
if ((screen.width>=HIGHRESWIDTH) && (screen.height>=HIGHRESHEIGHT))
{
window.location="my-high-res-page.html";
}
else
{
window.location="my-low-res-page.html";
}
//-->
</SCRIPT>
Just replace my-high/low-res-page.html, and HIGHRESWIDTH/HEIGTH with your values and you should be good to go.
|