//This is not suitable because it runs before document.ready
//$("#hpfg-ajaxload").load(str00+"plugin/HaphicFeedsGatherer/update.asp?act=auto");

//Waiting hint
$("#hpfg-ajaxload").html("Waiting for start...");

//load Status
function loadhpfgStatus(){
try{
	$("#hpfg-ajaxload").html("Loading status...");
	$.get(str00+"plugin/HaphicFeedsGatherer/update.asp?act=auto","",function(data){
		$("#hpfg-ajaxload").html(data);
	});
}catch(e){};
}

//Output Status
$(document).ready(function(){
try{
	setTimeout("loadhpfgStatus()",4000);
	}
catch(e){};
});