  var last = 0;
			   
  function ankieta( opcja )
  {
    
	if (last != 0)
	{
	  document.getElementById( "a" + last ).style.color = "#FFC400";
	  document["a"+last+"i"].src="./gfx/pik_g.gif";
	};
	 
	last = opcja;
		 
	document.getElementById( "a" + opcja ).style.color = "#CA5133";
	document["a"+opcja+"i"].src="./gfx/pik_g2.gif";
	
	return;
  };
  
  function ankieta_submit(p)
  {
    
	if (last == 0)
	{
	  alert("Najpierw wybierz pozycje!");
	}
	else
	{
	  location.href = "index.php?m=poll&mode=send&p="+p+"&a="+last;
	};
	
    return;
  };
