rn.pShare = function(friends, message, section, contentid) {
	rn.rmsSend({ mod:'share', tar:'share', op:'pShare', friends:friends, message:message, section:section, contentid:contentid},rn.pSharer);
};
	
rn.pSharer = function(oRmsR) {
		if (oRmsR['rmsS']==true)
		{
			//alert(oRmsR['rmsM']);
		}
		else if (oRmsR['rmsS']==false)
		{
			alert(oRmsR['rmsM']);
		}	
		else
		{
			alert('Communication Error');			
		}
    };	