

/***  CAPTCHA VALS  ***/
// Create & Set Captcha

CaptchaVal=1+3+5;

FormsCount=document.forms.length;
i=0;
while (i < FormsCount)
	{
		if (document.forms[i].Captcha)
		{
			document.forms[i].Captcha.value=CaptchaVal;
		}
		i++;
	}
	
	
