function include(script_filename) {
    document.write('<' + 'script');
    document.write(' language="javascript"');
    document.write(' type="text/javascript"');
    document.write(' src="' + script_filename + '">');
    document.write('</' + 'script' + '>');
}
include('/js/common.js');
include('/js/prototype.js');
//HotSaleList.cfm
function showHotSaleList(){
loadAjaxData("/include/AjaxIndex.cfm",{showHotSaleList:"ok"},returnShowHotSaleList,errorShowHotSaleList);
}
function returnShowHotSaleList(r){
	document.getElementById("HotSaleList").innerHTML=r.responseText;
}
function errorShowHotSaleList(){
document.getElementById("HotSaleList").innerHTML="Error!";
}
//hotsale2.cfm
function showhotsale2(){
loadAjaxData("/include/AjaxIndex.cfm",{showhotsale2:"ok"},returnShowhotsale2,errorShowhotsale2);
}
function returnShowhotsale2(r){
	document.getElementById("hotsale2").innerHTML=r.responseText;
}
function errorShowhotsale2(){
document.getElementById("hotsale2").innerHTML="Error!";
}
//centerADwindow.cfm
function showcenterADwindow(){
loadAjaxData("/include/AjaxIndex.cfm",{showcenterADwindow:"ok"},returnShowcenterADwindow,errorShowcenterADwindow);
}
function returnShowcenterADwindow(r){
	document.getElementById("centerADwindow").innerHTML=r.responseText;
}
function errorShowcenterADwindow(){
document.getElementById("centerADwindow").innerHTML="Error!";
}

//leftMENU.cfm
function showleftMENU(){
loadAjaxData("/include/AjaxIndex.cfm?showleftMENU=ok",{},returnShowleftMENU,errorShowleftMENU);
}
function returnShowleftMENU(r){
	document.getElementById("left1").innerHTML=r.responseText;
}
function errorShowleftMENU(){
document.getElementById("left1").innerHTML="Error!";
}

//category.cfm
function showcategory(){
loadAjaxData("/include/AjaxIndex.cfm",{showcategory:"ok"},returnShowcategory,errorShowcategory);
}
function returnShowcategory(r){
	document.getElementById("category").innerHTML=r.responseText;
}
function errorShowcategory(){
document.getElementById("category").innerHTML="Error!";
}

//CenterSearch.cfm
function showCenterSearch(){
loadAjaxData("/include/AjaxIndex.cfm",{showCenterSearch:"ok"},returnShowCenterSearch,errorShowCenterSearch);
}
function returnShowCenterSearch(r){
	document.getElementById("centerSEARCH").innerHTML=r.responseText;
}
function errorShowCenterSearch(){
document.getElementById("centerSEARCH").innerHTML="Error!";
}


//bottom.cfm
function showbottom(){
loadAjaxData("/include/AjaxIndex.cfm",{showbottom:"ok"},returnShowbottom,errorShowbottom);
}
function returnShowbottom(r){
	document.getElementById("bottom").innerHTML=r.responseText;
}
function errorShowbottom(){
document.getElementById("bottom").innerHTML="Error!";
}
