Scusate uso uno schema del genere per il mio sito ma vorrei implementare il reindirizzamento a 1024 anche per una risoluzione non censita ...come devo fare "else....."

Mi indicate con precisione cosa aggiungere alla fine...grazie


<script language="javascript">
<!--
var s_width ='';
var s_height ='';
s_width=screen.width
s_height=screen.height

if (s_width == "640"){
location.href="800.htm";
}

if (s_width == "800"){
location.href="800.htm";
}

if (s_width == "1024"){
location.href="1024.htm";
}

if (s_width == "1152"){
location.href="1024.htm";
}

if (s_width == "1280"){
location.href="1024.htm";
}

</script>