/*CAPTCHA*/

function new_captcha()   
{   
var c_currentTime = new Date();   
var c_milliseconds = c_currentTime.getTime();   
  
document.getElementById('captcha').src = 'includes/image.php?x='+ c_milliseconds;   
}

//addLoadEvent(new_captcha);
