
function authcodeflush() {
	var e = document.getElementById('authcodeimgid');
	var strrand = "";
	for(var i=0; i<4; i++)
    	strrand += Math.floor(Math.random()*1000);
	if( e )
		e.src = "authimage.php?" + strrand;
}
