var flgError = new Array();
var intNumFormElement = 0;

function ajax_getinvitelist( divID, dataSource)
{
    $('#'+divID).html('<img src="/images/ajax-loader.gif" width="16" height="16"/> 資料載入中...請稍候');
	$.get(dataSource,
    		  function(respText) {
    		  		$('#'+divID).html(respText);
    		  });
}

function ajax_getsearchlist( divID, dataSource)
{
    $('#'+divID).html('<img src="/images/ajax-loader.gif" width="16" height="16"/> 資料載入中...請稍候');
	$.get(dataSource,
    		  function(respText) {
    		  		$('#'+divID).html(respText);
    		  });
}

function ajax_follow(divID,dataSource)
{
    $('#'+divID).html('<img src="/images/ajax-loader.gif" width="16" height="16"/>');
	$.get(dataSource,
    		  function(respText) {
    		  		$('#'+divID).html(respText);
    		  });    
}