function loadNewsList(divID, catID, pIndex, lstType){
	ajax_loadContent(divID, 'services/loadnews.aspx?id='+catID+'&pindex='+pIndex+'&lsttype='+lstType);
}
function loadProductList(divID, catID, pIndex, lstType){
	ajax_loadContent(divID, 'services/loadproduct.aspx?id='+catID+'&pindex='+pIndex+'&lsttype='+lstType);
}
function loadDocumentList(divID, catID, pIndex, lstType){
	ajax_loadContent(divID, 'services/loaddocument.aspx?id='+catID+'&pindex='+pIndex+'&lsttype='+lstType);
}
function loadToolTip(event, pageID){
	//ajax_loadContent('bubble_middle', 'services/showtooltip.aspx?pid='+pageID);
	document.getElementById('bubble_middle').innerHTML = document.getElementById('divToolTip' + pageID).innerHTML;
	showToolTip();
}
function loadOtherInfo(divID, infoType, id){
	ajax_loadContent(divID, 'services/loadotherinfo.aspx?type='+infoType+'&id='+id);
}
function loadWeather(divID, cboWeather){    
    if (typeof(cboWeather.value) == 'undefined') loadOtherInfo(divID, '2', '9');
    else loadOtherInfo(divID, '2', cboWeather.value);
}
function ShowStockIndex(i){
    //return;
	if(i == 0){						
		document.getElementById('lnkHOSE').style.color='firebrick';
		document.getElementById('tdHOSE').style.background='url(images/Bg-HOSE-01.gif)';
		document.getElementById('lnkHASTC').style.color='darkgray';
		document.getElementById('tdHASTC').style.background='url(images/Bg-HASTC-02.gif)';
		document.getElementById('ifrmContent').src = 'http://vnexpress.net/User/ck/hcms/HCMStockSmall.asp';
	}
	else{
		document.getElementById('lnkHASTC').style.color='firebrick';
		document.getElementById('tdHOSE').style.background='url(images/Bg-HOSE-02.gif)';
		document.getElementById('lnkHOSE').style.color='darkgray';
		document.getElementById('tdHASTC').style.background='url(images/Bg-HASTC-01.gif)';
		document.getElementById('ifrmContent').src = 'http://vnexpress.net/User/ck/hns/HNStockSmall.asp';
	}
}
