function memberSubscribe(){
	if(!checkMemberForm())
		return
	$('#memberForm').submit()
}
function memberUnsubscribe(){
	if(!checkMemberForm())
		return
	$('#memberForm').submit()
}
function checkMemberForm(Form){
	if($('#fname').val()=="")
	{
	    alert($('#fname').attr("trueName")+" : "+dic.REQUIRED_FIELD);
		$('#fname').focus();
		return false;
	}
	if($('#lname').val()=="")
	{
	    alert($('#lname').attr("trueName")+" : "+dic.REQUIRED_FIELD);
		$('#lname').focus();
		return false;
	}
	if($('#email').val()=="")
	{
	    alert($('#email').attr("trueName")+" : "+dic.REQUIRED_FIELD);
		$('#email').focus();
		return false;
	}
	var re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
	if(!re.test($('#email').val()))
	{
	    alert(dic.BAD_MAIL);
		$('#email').focus();
		return false;
	}
	if($('#phone').val()=="")
	{
	    alert($('#phone').attr("trueName")+" : "+dic.REQUIRED_FIELD);
		$('#phone').focus();
		return false;
	}
	var re = /^\d+$/;
	if($('#phone').val()!="" && !re.test($('#phone').val()))
	{
	    alert($('#phone').attr("trueName")+" : "+dic.NUMBERS_ONLY);
		$('#phone').focus();
		return false;
	}

	
	return true;
}

