function togli_img()

	{	
		document.immagine.src='/grafica/spacer.gif';
		document.forms[0].img_name.value='';
		document.forms[0].img_loaded.value='';
		document.all.togli_img.style.visibility='hidden';
	}


function check_img()
{
if (document.forms[0].img_upload.value!="")
		{
		if (!isPictureFile(document.forms[0].img_upload.value))
			{
			alert('L\'immagine non è nel formato consentito (JPG o GIF)');
			return false;
			}
		}
if (document.forms[0].img_upload.value=="") return false;		
return true;			
}



function reload_img()
{
	if (check_img())
	{
		w=260;
		h=90;
		x=(screen.width-w)/2;
		y=(screen.height-h)/2;
		window.open('uploading.cfm','_uploading','width='+w+',height='+h+',left='+x+',top='+y+',resizable=no');
	}
}

