<script language="Javascript"><!--

// **********************************­ *************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( www.cgiscript.net/scripts.htm )
// **********************************­ *************

if (screen.width <= 640) {
document.location = "640x480.htm";
}

else if (screen.width <= 800) {
document.location = "800x600.htm";
}

else if (screen.width <= 1024) {
document.location = "1024x768.htm";
}

if (screen.width > 1024) {
document.location = "huuuuuuuuge.htm";
}

//-->
</script>