﻿
var obj;
var winModalWindow;
var AppID = "10441574";
var emailID = "";

function TryItNow(AppID) {
    CheckMessenger();
    LaunchApp(AppID, "");
}

function LaunchApp(AppID, emailID) {
    if (obj != null) {
        obj.LaunchApp(AppID, emailID);
    }
}
function CheckMessenger() {
    eval('try {obj = new ActiveXObject("MSNMessenger.P4QuickLaunch"); } catch (e) {obj = null;}');

    if (navigator.appName != "Microsoft Internet Explorer") {
        alert("Du må ha Internet Explorer for å starte aktiviteten herfra. Du kan starte aktiviteten direkte i Windows Live Messenger!");
    }
    else if (obj == null) {
        alert("Du må ha minimum versjon 6.2 av Windows Live Messenger for å starte denne aktiviteten. Oppgrader til siste versjon på msn.no/messenger");
    }
}

function IgnoreEvents(e) {
    return false
}

function HandleFocus() {
    if (winModalWindow) {
        if (!winModalWindow.closed) {
            winModalWindow.focus()
        }
        else {
            window.top.releaseEvents(Event.CLICK | Event.FOCUS)
        }
    }
    return false
}


