// Copyright Lixao Rich Media SARL 2008
// Browser history
_FUID = "";
_LUID = "";
pageTitle = document.title;

function UpdateURL(LUID) {

    document.title = pageTitle;

    if (navigator.appName.indexOf("Microsoft") != -1) {
    
        Page.location.href = "Page.aspx?LUID="+LUID;
        window.location.hash = LUID;
    } else {
        window.location.hash = LUID;
        _FUID = LUID;
    }
}

// Hash
function CheckHash() {
    hashURL = window.location.hash.substring(1);
    if (hashURL.length > 1) {
        _LUID = hashURL;
    }
    return _LUID;
}

// Timer
function checkURL(){
    hashURL = window.location.hash.substring(1);
    if (hashURL != _FUID) {
        _FUID = hashURL;
        _LUID = hashURL;
        callExternalInterface();
    }
}
setInterval(checkURL, 500);

// Flash
function callExternalInterface() {
    document.title = pageTitle;
    thisMovie("main").changePage(_LUID);
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    } else {
        return document[movieName]
    }
}