function gestione(q,c,t,l)
{
	with (document)
	{
    if (c == 0) {
      getElementById('sign').style.display = "none";
      getElementById('foto_small').style.display = "none";
    } else {
      if (q == 0) {
  			getElementById('sign').style.left = 672+"px";
      } else {
  			getElementById('sign').style.left = 751+"px";
      }
			getElementById('foto_small').style.left = l+"px";
			getElementById('foto_small').style.top = t+"px";
      getElementById('foto_small').style.display = "block";
      getElementById('sign').style.display = "block";
    }
  }
}

