 function TrovaConto_ApriDomanda(nDomandaDaNascondere,nDomandaDaVisualizzare){
    $('.cntDomanda'+nDomandaDaNascondere).slideUp('normal',function(){
        $('.cntDomanda'+nDomandaDaVisualizzare).slideDown();
    });
}

function TrovaConto_Redirect(strLink){
    window.location.href = strLink;
}

onclick="SwitchCheck(this)"

function SwitchCheck(s){

 if($(s).hasClass('Checked')){
  $(s).removeClass('Checked');
  return;
 }
  $(s).addClass('Checked');
  return;

}
