Hello,
It seems that there is a problem with the JavaScript associated to the Refersh Image link:
<a onclick="document.getElementById('siimage').src = 'http://www.art-sculpture-hess.com/index.php?option=com_juser&view=captcha&noxajax=1&tmpl=component' + Math.random(); return false" title="Refresh Image" href="#" style="border: none;" tabindex="-1">
It generates the new URL for the image like this:
www.art-sculpture-hess.com/index.php?opt...nt0.5057060074553125
It's missing the ampersand character between the tmpl=component and the random generated number. There is probably the link with ampersand in the source code, but JoomSEF removes the ampersand when trying to process the URL. Unfortunately, this behaviour cannot be changed at the moment, so you will probably need to modify the javascript to be like this:
<a onclick="document.getElementById('siimage').src = 'http://www.art-sculpture-hess.com/index.php?option=com_juser&view=captcha&noxajax=1&tmpl=component' + '&' + Math.random(); return false" title="Refresh Image" href="#" style="border: none;" tabindex="-1">
Could you please post the link where I can download the JUser component to test this further? Thank you.
Best regards,
ARTIO Support Team