ingen av dom gör exakt vad du bad om men den första skickar besökaren vidare till olika index sidor beroende på vilken upplösning besökaren har.
Den andra ska tydligen Zooma sidan till den upplösningen
som besökaren har.
har inte testat dom va några script jag hade liggandes.
på den andra ska du ändra 1024 till den som sidan är gjord för.
<HTML>
<HEAD>
<SCRIPT LANGUAGE=JAVASCRIPT>
<!--
function redirectPage() {
var url640x480 = "index1.asp";
var url800x600 = "index2.asp";
var url1024x768 = "index3.asp";
var url1152x864 = "index4.asp";
var url1280x1024 = "index5.asp";
if ((screen.width == 640) && (screen.height == 480))
{
window.location.href= url640x480;
}
else if ((screen.width == 800) && (screen.height == 600))
{
window.location.href= url800x600;
}
else if ((screen.width == 1024) && (screen.height == 768))
{
window.location.href= url1024x768;
}
else if ((screen.width == 1152) && (screen.height == 864))
{
window.location.href= url1152x864;
}
else if ((screen.width == 1280) && (screen.height == 1024))
{
window.location.href= url1280x1024;
}
else window.location.href= url800x600;
}
// -->
</SCRIPT>
</HEAD>
<BODY onload="redirectPage();">
<SCRIPT LANGUAGE=JAVASCRIPT>
var wdth = 1024; //Change this variable to match your configuration
document.body.style.zoom = screen.width/1024;
</SCRIPT>
