﻿
function loadContent(tid, args) {
	$(tid).empty();
	$(tid).append(' <img src="/images/ajax-loader.gif" width="31" height="31" />');
	//alert("loading: "+'"'+args.replace(/ /g, "%20")+'"');
	args = args.replace(/ /g, "%20");
	$(tid).load(args);
}

