function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function apri(form,car,width,height,nome) {
    if(!nome)
        nome = 'aa' + (new Date().getTime());
    //----------
    var win_w = width;
    var win_h = height + 0;
    var left = Math.floor((screen.width - win_w) / 2);
    var top = Math.floor((screen.height - win_h) / 2);
    car = car + ',width=' + width + ',height=' + height + ',top=' + top + ',left=' + left;
    //----------

    form.target = nome;
    open ('', nome, car);
}