function reportSpam(ImageID){
	AJAXGet('/reportSpam.php?ImageID='+ImageID,handleSpam,false)	
}

function handleSpam(sText){
	document.getElementById('reportSpam').innerHTML = sText;
	if(sText != 0){
		hideDiv1("reportSpam");
	}
}