function showIfExists(anUrl,aComment)
{
	var vImg=new Image();
	vImg.src=anUrl;
	if(vImg.width>0)
	{
		document.write("<center>");
		document.write("<img src='"+anUrl+"' alt='"+aComment+"'/>");
		document.write("</center>");
	} // end if
} // end function
