function verifyEmail()
{
	if(document.getElementById('input_email').value != document.getElementById('input_email_confirm').value)
	{
		alert("Email and Confirm Email do not match");	
		return false;
	}
	return true;
}
