// $Id: jquery-jsrs.js,v 1.2 2007/11/01 17:07:41 steve Exp $
function jsrsExecute(url,callback,method,xml){
	var escxml = xml.replace(/'"'/g,'\\"');
	//don't need to send method -- its always F:"doRpc"
	$.post(url,{F:method,XMLHTTP:1,P0:"["+escxml+"]"},callback);
}