Screen Resolution Redirection

Use this code to redirect your visitors to the web page that best fits their screen resolution.




Put this between your HEAD-tags
<script language="Javascript">
<!--
if (screen.width <= 640) {
document.location = "640x480.htm";
}
else if (screen.width <= 800) {
document.location = "800x600.htm";
}
if (screen.width > 800) {
document.location = "larger.htm";
}
//-->
</script>

Free JavaScripts provided
by Winfolinx.com


Back