function GetFile(parm,area)
{
	if (document.getElementById('download_ghost'))
	{
		var olddiv = document.getElementById("download_ghost");
		document.body.removeChild(olddiv);
	}
	var iframe = document.createElement("iframe");
	document.location.href = "http://www.reblatta.it/download_media.php?"+(area!=undefined ? "area="+area+"&" : "")+"file=" + parm;
	//alert(document.location.href);
	iframe.style.display = "none";
	iframe.setAttribute('id',"download_ghost");
	document.body.appendChild(iframe);
}