// I like this a lot since it's really straight forward, simple
// to use, and works for every device!
// Detects screen width & redirects if under the pixel amount
// you set.
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "mobile.html";
}
//-->
</script>