/*show event date*/
function ShowDate(){
	var type = $("#type").val();
	if(type=="event"){
		$("#event_date").show("slow");	
	}else{
		$("#event_date").hide("slow");
	}
}

function ShowBlockper(){
	//alert("555555");
	var type = $("#read_type:checked").val();
	if(type=="all"){
		$("#member_list").hide("slow");
		$("#position_list").hide("slow");	
	}else if(type=="member"){
		$("#member_list").show("slow");
		$("#position_list").hide("slow");
	}else if(type=="position"){
		$("#position_list").show("slow");
		$("#member_list").hide("slow");
	}
}
function showpassword(){
	$("#pass").show("slow");
	$("#pass2").show("slow");
	$("#pass3").show("slow");
	}



