//Refresh captcha image...
//the random method is use to change the src otherwise a new image will not be generated
 function refresh(){
      var img_node = document.getElementById('captcha');
      img_node.src = 'Captcha/Captcha.php?'+Math.random();
	
 }