function Reload()
{
	window.frames['captcha'].location.reload(true);
}
function checkButton(el)
{
	var checkobj = el
	if (document.all||document.getElementById)
	{
		for (i=0;i<checkobj.form.length;i++)
		{  //hunt down submit button
			var tempobj=checkobj.form.elements[i]
			if(tempobj.type.toLowerCase()=="submit")
				tempobj.disabled=!checkobj.checked
		}
	}
}
function checkPass()
{
	if(document.getElementById('CPassword').value != "")
	{
		if(document.getElementById('Password').value != document.getElementById('CPassword').value)
			document.getElementById('Match').style.display = 'inline';
		else
			document.getElementById('Match').style.display = 'none';
	}
}
function confirmation()
{
	var answer = confirm("Are you sure you want to Deactivate your account?")
	if (answer)
	{
		window.location = "deactivate.asp";
	}
}
