function user_list() {
	window.open('member/nlnMember.php','user_pop','width=430,height=400,marginwidth=0,marginheight=0,top=150,left=150,resizable=0,scrollbars=1'); 
}

function get_user_profile(user_id) {
	var temp_name, temp_width, temp_height;

	temp_name = "user_profile";
	temp_width = 330;
	temp_height = 500;

	window.open('member/userinfo.php?user='+user_id, temp_name,'width='+temp_width+',height='+temp_height+',marginwidth=0,marginheight=0,top=100,left=100,resizable=0,scrollbars=1'); 
}

function get_user_profile2(user_id) {
	var temp_name, temp_width, temp_height;

	temp_name = "user_profile";
	temp_width = 330;
	temp_height = 500;

	window.open('../member/userinfo.php?user='+user_id, temp_name,'width='+temp_width+',height='+temp_height+',marginwidth=0,marginheight=0,top=100,left=100,resizable=0,scrollbars=1'); 
}

function send_msg(user_id) {
	var temp_name, temp_width, temp_height;

	temp_name = "send_msg";
	temp_width = 330;
	temp_height = 500;

	window.open('./send_msg.php?user='+user_id, temp_name,'width='+temp_width+',height='+temp_height+',marginwidth=0,marginheight=0,top=100,left=100,resizable=0,scrollbars=1'); 
}

function fb_onlogin() {

	document.location.href="fb_login.php";
}
function toggleLayer(id) {
	var obj = document.getElementById(id);
	if (obj.style.display == "none") {
		obj.style.display = "block";
	} else {
		obj.style.display = "none";
	}
}
