//---------------------------------------
//function CreateCAPTCHACode()
//---------------------------------------
function CreateCAPTCHACode(imgid,hiddenid)
{
	var temp="";
	
	for(var i=0; i<5; i++)
	{
		temp += Math.round(Math.random() * 8 );
	}
	
	eval('document.getElementById("' + imgid + '").src = "/utility/captcha/JpegImage.aspx?code=" + temp;');
	eval('document.' + hiddenid + '.value = temp;');
	
	//eval('alert(document.getElementById("' + imgid + '").src);');
	//eval('alert(document.getElementById("' + hiddenid + '").value);');
}

//---------------------------------------
//function CreateCAPTCHACodeWithSrc()
//---------------------------------------
function CreateCAPTCHACodeWithSrc(imgid,hiddenid,absSrc)
{
	var temp="";
	
	for(var i=0;i<5;i++)
	{
		temp += Math.round(Math.random() * 8 );
	}
	
	eval('document.getElementById("' + imgid + '").src = absSrc + "/utility/captcha/JpegImage.aspx?code=" + temp;');
	eval('document.' + hiddenid + '.value = temp;');
	
	//eval('alert(document.getElementById("' + imgid + '").src);');
	//eval('alert(document.getElementById("' + hiddenid + '").value);');
}

