function func_push(pa_type,pa_url,pa_title,pa_service) {
	if (pa_type=='s'){
			window.open('http://www.fashionguide.com.tw/game/push/push_u8.asp?pa_type='+pa_type+'pa_url='+pa_url+'pa_title='+pa_title+'pa_service='+pa_service,'share','width=770,height=450,scrollbars=1,resizeable=1');
			return false;
	}else{
		switch(pa_type)
		   {
		   case 'f':
				func_push_facebook(pa_url,pa_title);
			 break
		   case 'p':
				func_push_plurk(pa_url, pa_title);
			 break
		   default:
				func_push_fw(pa_url, pa_title,pa_service);
		   }
	}

};
function func_push_facebook(pa_url, pa_title) {
	window.open('http://www.facebook.com/sharer.php?u='+pa_url+'&t='+pa_title);
	return false;
};

function func_push_plurk(pa_url, pa_title) {
	window.open('http://www.plurk.com/?qualifier=shares&status='+pa_url+' ('+pa_title+')');
	return false;
};

function func_push_fw(pa_url, pa_title,pa_service) {
	window.open('http://www.fashionguide.com.tw/game/push/fw.asp?pa_url='+pa_url+'&pa_title='+pa_title+'&pa_service='+pa_service);
	return false;
};

function func_pushicon(pa_url,pa_title,pa_service) {
	pa_url=encodeURIComponent(pa_url);
	pa_title=encodeURIComponent(pa_title);
	
	document.write('<table width="0" border="0" cellspacing="0" cellpadding="0">'+
	 '<tr>'+
	  '<td width="48"><a href="javascript:void(0);" onClick="javascript:func_push(\'p\',\''+pa_url+'\',\''+pa_title+'\',\''+pa_service+'\')"><img src="http://i.fgi.tw/images/plurkicon.gif" alt="推薦到你的噗浪" width="41" height="41" border="0" align="absmiddle" /></a></td>'+
	  '<td width="48"><a href="javascript:void(0);" onClick="javascript:func_push(\'f\',\''+pa_url+'\',\''+pa_title+'\',\''+pa_service+'\')"><img src="http://i.fgi.tw/images/facebookicon.gif" alt="推薦到你的臉書" width="41" height="41" border="0" align="absmiddle" /></a></td>'+
	 '</tr>'+
	'</table>');
}

