function RS_Load_Json(tplUrl,tplID,tplData){
	$.ajax({
		url 	: tplUrl,
		type	: 'GET',
		dataType: 'html',
//		timeout	: 1000,
		error	: function(){
			$("#"+tplID).html("加载JST模板文件失败");
		},
		beforeSend:function(){
			$("#"+tplID).html("正在加载...");
		},
		success	: function(jst){
			$("#"+tplID).html(jst);
		},
		complete: function(){
			$("#"+tplID).html(TrimPath.processDOMTemplate(tplID,tplData));
		}
	});
}

function RS_Load_File(tplUrl,tplID){
	$("#"+tplID).html($.ajax({url: tplUrl,async: false}).responseText);
}

function RS_Json(tplID,tplData){
	$("#"+tplID).html(TrimPath.processDOMTemplate(tplID,tplData));
}