 function showFullText(q){
  var item = document.getElementById("item-"+q);
  item.style.display="block";
  item.style.position="absolute";
  item.style.top="0px";
  item.style.left="0px";
  item.style.width="345px";
  item.style.zIndex="9999";
  item.style.backgroundColor="white";
  item.style.border="1px dashed #ccc";
 }
 function hideFullText(q){
  var item = document.getElementById("item-"+q);
  item.style.display="block";
  item.style.position="relative";
  item.style.width="345px";
  item.style.zIndex="0";
  item.style.backgroundColor="white";
  item.style.border="1px dashed white";
 }