<?php
function captcha() {
?>
<script>
function captcha_reload() {
document.getElementById('captcha').src = "/utils/captcha.php?" + Math.random();
}
</script>
<?php
echo '<a href="javascript:captcha_reload();"><img src="'. URL .'/utils/captcha.php" alt="captcha" width="100" height="60" /></a><br />';
}
?>