function TextCheck(FN,MSG) {
	F = document.forms[0];
	if (F.elements[FN].value == "") {
		window.alert(MSG);
		F.elements[FN].focus();
		return false;
	}
}
function EmailCheck(FN,MSG) {
	F = document.forms[0];
	var str = F.elements[FN].value;
    var re = /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/;
    if (!str.match(re)) {
        window.alert(MSG);
		F.elements[FN].focus();
		return false;
    }
}
function RadioCheck(FN,MSG) {
	F = document.forms[0].elements[FN];
	var Valid = false;
	for (var i=0; i<F.length; i++) {
		if (F[i].checked) {
			return true;
		}
	}
	window.alert(MSG);
	F[0].focus();
	return false;
}
