﻿// Fichier JavaScript
// By Cerbere

function OpenUrl(url)
{
    document.location.href = url;
}

function ShowPict()
{
    ShowFullBck();
    document.getElementById("Picture").style.display = "block";
    return false;
}

function HidePict()
{
    HideFullBck();
    document.getElementById("Picture").style.display = "none";
    //window.close();
    return false;
}

function ZoomPict()
{
    var mypict = document.getElementById("Picture").getElementsByTagName("img").item(0);
    mypict.style.width = "100px";
    //window.close();
    return false;
}

function ShowFullBck()
{
    document.getElementById("FullBck").style.display = "block";
}

function HideFullBck()
{
    document.getElementById("FullBck").style.display = "none";
}

function Popup(file)
{
    window.open(file, "test", config='height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no');
}