if(navigator.userAgent.match(/iphone/i))
{
    //Iphone
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/ipod/i))
{
    //Ipod
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/android/i))
{
    //Android
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/sgh/i))
{
    //Samsung
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/sonyericsson/i))
{
    //Sony Ericsson
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/psp/i))
{
    //Playstation Portable
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/mot/i))
{
    //Motorolla
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/htc/i))
{
    //HTC
    location.replace("http://m.lezbomovies.com");
}
 else if(navigator.userAgent.match(/lg/i))
{
    //LG
    location.replace("http://m.lezbomovies.com");
}

else if(navigator.userAgent.match(/opera mini/i))
{
    //Opera mini
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/blackberry/i))
{
    //BlackBerry
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/nokia/i))
{
    //Nokia
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/palm/i))
{
    //PALM
    location.replace("http://m.lezbomovies.com");
}
else if(navigator.userAgent.match(/ipaq/i))
{
    //iPAQ
    location.replace("http://m.lezbomovies.com");
}

else if(navigator.userAgent.match(/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|treo)/i))
{
    //Other Device
    location.replace("http://m.lezbomovies.com");
}

