I noticed that the custom TOA Systems map that previously worked would not show in my web page, giving the "broken image" icon. I saw some End Of File errors in both Firefox and Edge.
Firefox gives:
Secure Connection Failed
An error occurred during a connection to toasystems.com. PR_END_OF_FILE_ERROR
It looks like something is converting it to a https:// generating this error.
Original HTML from my page:
<<img src="http://toasystems.com/gifs/rogerscity.gif?rand=<?=rand(1,1000);?>" width="660"></img>
When I put the image link in directly it would display by itself.
New HTML:
<a href="http://toasystems.com/gifs/rogerscity.gif" target="_blank">Link to Map Image from TOA Systems</a>
http://toasystems.com/gifs/rogerscity.gif
I even tried an i-frame and it wouldn't work either.
I decided to put an <a href..> link to open in a new tab instead. That works.
Greg H.