function wclose (wid,choice){
        $("#"+wid).fadeOut('1000');
        if (choice){ $('#choice').show();}
}
function wopen(wid,choice){
       // if (choice) { $('#choice').hide(); }
        $("#"+wid).fadeIn('1000');
}

