
if (screen.width <= 640) {
alert("Lähetetään sivulle josta näet sivun paremmin resoluutiollasi 640x480.");
document.location = "eka.html";
}

else if (screen.width <= 800) {
alert("Lähetetään sivulle josta näet sivun paremmin resoluutiollasi 800x600.");
document.location = "eka.html";
}

else if (screen.width <= 1024) {
alert("Resoluutiosi on 1024 x 768.");
}

else if (screen.width <= 1152) {
alert("Resoluutiosi on 1152 x 864.");
}

else if (screen.width <= 1280) {
alert("Resoluutiosi on 1280 x 768 tai 1280 x 1024.");
}

else if (screen.width <= 1400) {
alert("Resoluutiosi on 1400 x 1050.");
}

else if (screen.width <= 1600) {
alert("Resoluutiosi on 1600 x 1200, 1600 x 1280 tai 1600 x 1024.");
}

else if (screen.width <= 1920) {
alert("Resoluutiosi on 1920 x 1200 tai 1920 x 1440.");
}

else if (screen.width <= 2048) {
alert("Resoluutiosi on 2048 x 768 tai 2048 x 1536.");
}

else if (screen.width <= 2560) {
alert("Resoluutiosi on 2560 x 1024 tai 2560 x 960.");
}

else if (screen.width <= 3200) {
alert("Resoluutiosi on 3200 x 1200.");
}

else if (screen.width <= 3840) {
alert("Resoluutiosi on 3840 x 1024.");
}

