function votar(id) {
  
  //if( confirm('¿De verdad querés votar por esta frase?') ){
      
    document.getElementById("iframeOculto").src='votar.php' + '?id=' + id;
  
  //}
  
}

function showHide (what, from, message){

  if( document.getElementById(what).style.display == 'none'){
  
    document.getElementById(what).style.display = 'block';
    document.getElementById(from).innerHTML = message + 'Ocultar &laquo;';
    document.getElementById(from).title = 'Click aquí para ocultar este elemento.';
  
  }
  else if( document.getElementById(what).style.display == 'block' ){
  
    document.getElementById(what).style.display = 'none';
    document.getElementById(from).innerHTML = message + 'Ver &raquo;';
    document.getElementById(from).title = 'Click aquí para desplegar este elemento.';
  
  }
}

function changeCursor (what){
  document.getElementById(what).style.cursor = 'Hand';
}