show_share_box 		= function() { show_box('share_box'); }
close_share_box 	= function() { close_box('share_box'); }
share_msg 			= function(msg) { show_msg(msg, 'share_msg'); }

function send_share(frm) {	
	f = function(o) {
		xmlDoc 		= create_xml_doc(o.responseText);	
		msg 		= getText(xmlDoc, 'msg');						
		share_msg(msg);
	}
	
	new Ajax.Request(share_file, { postBody: $(frm).serialize() + '&j=' + ut(), method: 'post', onSuccess: f } ); 		
}