function getmsnlist(){
	document.getElementById("invite_win").style.display="block";
	ajax_getinvitelist( 'invitelist', '/ajax/getmsnlist?msn_id='+document.invite_msn.msn_account.value+'&msn_psw='+document.invite_msn.msn_password.value);
}
function getyahoolist(){
	document.getElementById("invite_win").style.display="block";
	ajax_getinvitelist( 'invitelist', '/ajax/getyahoolist?yahoo_id='+document.invite_yahoo.yahoo_account.value+'&yahoo_psw='+document.invite_yahoo.yahoo_password.value);
}
function getsearchlist(){
	document.getElementById("search_win").style.display="block";
	ajax_getsearchlist( 'searchlist', '/ajax/getsearchlist?q='+document.search_form.q.value);
}
function follow_switch(is_follow,account){
	var is_follow,account;
	if(is_follow=="Y"){
		ajax_follow( 'follow_ststus_'+account,'/ajax/unfollow?account='+account);
	}
	if(is_follow=="N"){
		ajax_follow( 'follow_ststus_'+account,'/ajax/follow?account='+account);
	}
}
