Per chi servisse ho trovato questo script. Adatta il proprio sito in base alla risoluzione che usa il visitatore
<HTML>
<HEAD>
<script language="javascript">
<!--
var s_width ='';
var s_height ='';
s_width=screen.width
s_height=screen.height
if (s_width == "640"){
location.href="640_x_480.htm";
}
if (s_width == "800"){
location.href="800_x_600.htm";
}
if (s_width == "1024"){
location.href="1024_x_768.htm";
}
if (s_width == "1152"){
location.href="1152_x_864.htm";
}
if (s_width == "1280"){
location.href="1280_x_1024.htm";
}
//-->
</script>
</HEAD>
<BODY bgcolor="white">
</body>
</html>
:o