﻿// JScript File

function ouvre_popupexposant(page) {
window.open(page,"","width=560,height=620,scrollbars=1,left=" + ((screen.width - 560)/2) + ",top=" + ((screen.height - 620)/2) );
}

function ouvre_popupconfsem(page) {
window.open(page,"","width=560,height=620,scrollbars=1,left=" + ((screen.width - 560)/2) + ",top=" + ((screen.height - 620)/2) );
}

function onUpdating(){

var updateProgressDiv  = document.getElementById("updateProgressDiv");
updateProgressDiv.style.visibility = "visible";
}

function onUpdated() {
var updateProgressDiv  = document.getElementById("updateProgressDiv");
updateProgressDiv.style.visibility = "hidden";
}
                   
function BackForm(){
    self.location.hash = "BackForm";
}
function BackTop() {
    self.location.hash = "top";
}
function BackExp() {
    self.location.hash = "ExpPanel";
}
function BackSem() {
    self.location.hash = "SemPanel";
}
function BackConf() {
    self.location.hash = "ConfPanel";
}

// Fonction de l'accordéon pour mémorisation du panel en cours
function SetPan(txtIndex,value)
{
    document.getElementById(txtIndex).value = value;
}