/* 
	File: /Javascript/Functions/captchaReload.js 
	Charset: utf-8 (ØÆÅ)
	+-----------------------------------------------------------------------------+
 	| http://www.metromedia.no - Created by Dhimiter Karalliu                     |
 	+-----------------------------------------------------------------------------+
*/

	function reloadCaptcha(id) {
		now = new Date();
		var capObj = document.getElementById(id);
		if (capObj) {
			capObj.src = capObj.src + (capObj.src.indexOf('?') > -1 ? '&' : '?') + Math.ceil(Math.random() * (now.getTime()));
 		}
	}