function createCaptchaCode(){
	
	var temp="";
	for(var i=0;i<5;i++){
		temp+= Math.round(Math.random() * 8 );
	}
	document.all.captchaImg.src="../incl/JpegImage.aspx?code=" +temp;
	document.all.captchaCode.value=temp;
}
