
function Fermer() {
     opener.focus();
     window.close();
}

function popUp(URL) {
     day = new Date();
     id = day.getTime();
     eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=550');");
}

function popUpBig(URL) {
     day = new Date();
     id = day.getTime();
     eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=600');");
}

function selectRadio(radio) {
    var element = document.getElementById(radio);
    if(element) {
        element.click();
    }
}

function callIA(cName, cResult, ident, userlogid) {
     parent.frames['IAFrame'].location.href = 'IA.jsp?ident=' + ident + '&userlogid=' + userlogid + '&appCurrentStep=0&appNextStep=0&appChangedCriteriaId=0&appChangedCriteriaValue=0&appChangedCriteriaCode=0&appSurveyFinished=Yes&appUpdateStep=No&appSurveyProducts=No&entry=' + cName + ' | ' + cResult;
}