schon gut habs mir schon raus gesucht von der Site.
NOCH MAL herzlich dank an MadGuard :)
function redirectPage() {
var url800x600 = "http://www.mudguard.de/800/";
var url1024x768 = "http://www.mudguard.de/start.htm";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url800x600;
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= url1024x768;
else if ((screen.width == 1280) && (screen.height == 1024))
window.location.href= url1024x768;
}