A ver si te sirve esto:
Código HTML:
Ver original<script type="text/javascript"> if (screen.width<800) {
window.location="http://www.ejemplo.es/mobile.php";
}
if (screen.width == 768) {
window.location="http://www.ejemplo.es/mobile-1.php";
}
if ((screen.width == 1024) && (screen.height == 600)){
window.location="http://www.ejemplo.es/mobile-2.php";
}
Un saludo