function expandit()
{
  var obj=document.getElementById("hidden_form");
  var oSpan=document.getElementById("spCompName");
  var aSpan=document.getElementsByTagName("span");

  //clear text on enter
  document.compSend.comp_name.value = "";

  if(obj)
  {
    if (obj.style.display=="none")
    {
      obj.style.display="";

      for (i = 0; i < aSpan.length; i++)
      {
        aSpan[i].style.cursor ='hand';
      }
    }
    else
    {
      obj.style.display="none";

      for (i = 0; i < aSpan.length; i++)
      {
        aSpan[i].style.cursor ='default';
      }
     // oSpan.style.cursor ='default';
    }
  }
}

function insert_name(comp_name)
{
  document.compSend.comp_name.value = comp_name;
}