function wp_post_tab(idt, cal){
  for (var i = 0; i < cal; i++) {
    document.getElementById('txt' + i).style.display='none';
    document.getElementById('zag' + i).style.backgroundColor= '#EBEBEB';
    document.getElementById('zag' + i).style.cursor= 'pointer';
  }
   document.getElementById('txt' + idt).style.display='block';
   document.getElementById('zag' + idt).style.backgroundColor='#FFFFFF';
   document.getElementById('zag' + idt).style.cursor='auto';
}