function swapImage(sid,dest){
	document.getElementById(sid).setAttribute('src',dest);
	return false;
}

function showInfo(e,sid){
	document.getElementById(sid).style.display='';
	e.style.cursor='pointer';
	e.style.color='#D6A014';
	e.style.fontWeight='bold';
	return false;
}
function hideInfo(e,sid){
	document.getElementById(sid).style.display='none';
	e.style.color='#000000';
	e.style.fontWeight='normal';
	return false;
}

function reloadCaptha(){
        var objImg = document.images["im_captcha"];
        objImg.src = "captcha.php?cap=ee7bfeb2a36cee2276c84e8662732506";
}