// JavaScript Document
var mobile = function () {
    return {
        detect: function () {
            var uagent = navigator.userAgent.toLowerCase();
            var list = this.mobiles;
            var ismobile = false;
            for (var d = 0; d < list.length; d += 1) {
                if (uagent.indexOf(list[d]) != -1) {
                    ismobile = true;
                }
            }
            return ismobile;
        },
        mobiles: [
			"midp", "240x320", "blackberry", "netfront", "nokia", "panasonic",
			"portalmmm", "sharp", "sie-", "sonyericsson", "symbian",
			"windows ce", "benq", "mda", "mot-", "opera mini",
			"philips", "pocket pc", "sagem", "samsung", "sda",
			"sgh-", "vodafone", "xda", "palm", "iphone",
			"ipod", "ipad", "android"
		]
    };
} ();

var mobile2 = function () {
    return {
        detect: function () {
            var uagent = navigator.userAgent.toLowerCase();
            var list = this.mobiles;
            var ismobile = false;
            for (var d = 0; d < list.length; d += 1) {
                if (uagent.indexOf(list[d]) != -1) {
                    ismobile = true;
                }
            }
            return ismobile;
        },
        mobiles: [
			"windows phone os"
		]
    };
} ();

if (mobile2.detect() && !mobile.detect()) {

    $(document).ready(function () {
        var landscapeInit = (screen.height < screen.width);
        if (landscapeInit) {
            //alert('Landascape Init');
        }
        else {
            alert('Attenzione!\n Ruota il tuo dispositivo in orizzontale\n per una fruizione ottimale di EvideoshoppingTV');
        }

        window.onorientationchange = function () {
        //window.onresize = function () {
            var landscape = (screen.height < screen.width);
            if (landscape) {
                //alert('Landascape');
            }
            else {
                alert('Attenzione!\n Ruota il tuo dispositivo in orizzontale\n per una fruizione ottimale di EvideoshoppingTV');
            }
            //alert(screen.height);
            //alert(screen.width);
            //alert('You are using a mobile phone to view this page..');
        }
    });
} else if(!mobile.detect() && !mobile2.detect()) {
    //alert('You are using a desktop browser to view this page..');
};

$(document).ready(function () {
    //alert("mobile1: " + mobile.detect()+" mobile2: "+mobile2.detect());
    if (mobile.detect()) {
        var landscapeInit = (window.innerHeight < window.innerWidth);
        if (landscapeInit) {
            //alert('Landascape Init');
        }
        else {
            alert('Attenzione!\n Ruota il tuo dispositivo in orizzontale\n per una fruizione ottimale di EvideoshoppingTV')
        }


        //window.onorientationchange = function () {
        window.onresize = function () {
            var landscape = (window.innerHeight < window.innerWidth);
            if (landscape) {
                //alert('Landascape');
            }
            else {
                alert('Attenzione!\n Ruota il tuo dispositivo in orizzontale\n per una fruizione ottimale di EvideoshoppingTV')
            }
        }
    }
});
