// JavaScript Document
function ValidCaptcha(){
		var str1 = removeSpaces(document.getElementById('txtCaptcha').value);
		var str2 = removeSpaces(document.getElementById('txtInput').value);
		if (str1 == str2){
			return true;	
		}else{
			return false;
		}
	}
	
	// Remove the spaces from the entered and generated code
	function removeSpaces(string){
		return string.split(' ').join('');
	}

var a = Math.ceil(Math.random() * 9)+ '';
var b = Math.ceil(Math.random() * 9)+ '';       
var c = Math.ceil(Math.random() * 9)+ '';  
var d = Math.ceil(Math.random() * 9)+ '';  
var e = Math.ceil(Math.random() * 9)+ '';  
  
var code = a + b + c + d + e;
document.getElementById("txtCaptcha").value = code;
document.getElementById("txtCaptchaDiv").innerHTML = code;	
