function checkCharacterName(theForm) {
	if(theForm.os1.value == ''){
		alert('You forgot to provide your character name!');
		return false;
	}else if(theForm.os2.value == ''){
		alert('You forgot to confirm your character name!');
		return false;
	}else{
		if (theForm.os1.value != theForm.os2.value)
		{
			alert('Character name does not match!');
			return false;
		} else {
			alert('You are now being forwarded to PayPal to process your donation. Afterward you will be redirected to the Redmoon Classic Website. Thank you for your support!');
			return true;
		}
	}
}
