
function clickCountb(afl){

location.href = afl;
return false;
}

function showhide(id,idb){
    if(document.getElementById){
      if(document.getElementById(id).style.display == "block"){
        document.getElementById(id).style.display  = "none";
        document.getElementById(idb).style.display = "block";
      }else{
        document.getElementById(id).style.display  = "block";
        document.getElementById(idb).style.display = "none";
      }
    }
}



function toTwitter(text){
 var text = encodeURIComponent(text);
 var newWin = window.open('http://twitter.com/intent/tweet?text='+text,'twindow','width=800,height=400,menubar=no,toolbar=no,scrollbars=yes');
}


