// **************************************************************************
// **************************************************************************
function getWidth() {
    return ((typeof window.innerWidth) == "number") ? window.innerWidth
            : ((typeof window.width) == "number") ? window.width
            : ((typeof document.body.clientWidth) == "number") ? document.body.clientWidth
            : 800
}

// **************************************************************************
// **************************************************************************
function showPhoto(name) {
    PHOTO = open(name,"PHOTO")
    PHOTO.focus()
}

// **************************************************************************
// **************************************************************************
function popupMenu() {
    MENU = open("/@pmenu.php","MENU",
            "height=640,width=400,dependent,scrollbars,toolbar=no")
    MENU.focus()
}

// **************************************************************************
// **************************************************************************
function setCookie(name, value, days) {
    if (days) {
        var date = new Date();
        date.setTime(date.getTime()+(days*24*60*60*1000));
        var expires = "; expires="+date.toGMTString();
    }
    else
        var expires = "";
    document.cookie = name + "=" + escape(value) + expires + "; path=/"
}
