function fb_share(shome){
//	$msg=title+"<br>"+desc;	
	FB.ui(
   {
	 method: 'stream.publish',
	 message:'',
	 attachment: {
	   name: '行動學習全球資訊網',
	   caption: '',
	   description: (
		 ''
	   ),
	   href: location.href,
		 media: [
			  {
				type: 'image',
				href: location.href,
				src: shome+'/icon_facebook.jpg'
			  }
			]	   
	 },
	 action_links: [
	   { text: '行動學習全球資訊網', href: 'http://actionlearning.com.tw/' }
	 ],
	 user_prompt_message: 'Share your thoughts about Connect'
   },
   function(response) {
	 if (response && response.post_id) {
	   //alert('Post was published.');
	   //log 
	 } else {
	   //alert('Post was not published.');
	 }
   }
 );
}


function update_user_box(shome){
	
	$message = "本公司創立於2010年，創辦人為鄭秀娟。宗旨為推廣行動學習，以及提昇提問文化。\n應用行動學習(Action Learning)及教練(coaching)等技術，\n透過漸進而持續的變革，增進個人、團隊、組織成長。";
	FB.ui(
   {
	 method: 'stream.publish',
	 message: $message,
	 attachment: {
	   name: '行動學習全球資訊網',
	   caption: '',
	   description: (
		 $message
	   ),
	   href: encodeURIComponent(location.href),
		 media: [
			  {
				type: 'image',
				href: encodeURIComponent(location.href),
				src: shome+'/icon_facebook.jpg'
			  }
			]	   
	 },
	 action_links: [
	   { text: '行動學習全球資訊網', href: encodeURIComponent(location.href) }
	 ],
	 user_prompt_message: 'Share your thoughts about Connect'
   },
   function(response) {
	 if (response && response.post_id) {
	   //alert('Post was published.');
	 } else {
	   //alert('Post was not published.');
	 }
   }
 );
}
/* facebook 檢查是否已登入 */
function check_facebook_login(shome){		
	//return;
//FB.login(function(response) {		
//				if (response.session) {				
					fb_share(shome)
//				}
//			});		
	
}

