var tt;
var o;

function get_details(prog_id)
{
	ajaxquery("details.php?prog_id="+prog_id,"showinfo");
}


function showinfo_t()
{
	o+=0.1;if(o>1) o=1;
	//alert(o);
	document.getElementById("showinfo").style.filter="alpha(opacity="+100*o+")";
	document.getElementById("showinfo").style.opacity=o;
	
	if(o==1) 
		clearInterval(tt);
}

function showinfo(prog_id)
{	
	document.getElementById("fodo").style.top="10px";
	document.getElementById("showinfo").style.filter="alpha(opacity=0)";
	document.getElementById("showinfo").style.opacity="0";
	document.getElementById("showinfo").style.top="50px";
	document.getElementById("showinfo").innerHTML='<div style="text-align:center">várjon...</div>';
	o=0;
	tt=setInterval(showinfo_t,50);
	get_details(prog_id);
}
