//----自动更新缺省主页面--------------------------------------------
function autoUpdate()
{
	var ajaxObj      = new AjaxFrame;
	ajaxObj.url      = "index.php?mod=ContUpdate&action=isUpdate";
	ajaxObj.method   = "GET";
	ajaxObj.callback = indexUpdate;
	ajaxObj.sendReq();
}
 
function indexUpdate(httpReq,objId)
{
}

//----单击新闻详细内容时更新其静态文件内容--------------------------------
function itemUpdate(id,type)
{
	var ajaxObj      = new AjaxFrame;
	ajaxObj.url      = "index.php?mod=ContUpdate&action=updateNewsItem";
	ajaxObj.method   = "POST";
	ajaxObj.content  = "itemid="+id+"&typ="+type;
	ajaxObj.callback = itemUpdateBack;
	ajaxObj.sendReq();
}
function itemUpdateBack(httpReq,objId)
{
}