function createHttpRequest_ibs(){
    if(window.ActiveXObject){
		try 		{return new ActiveXObject("Msxml2.XMLHTTP")} 
		catch (e) 	{
			try 		{return new ActiveXObject("Microsoft.XMLHTTP")} 
			catch (e2) 	{return null}
       	}
	}
	else if (window.XMLHttpRequest) 	{return new XMLHttpRequest();}
	else 								{return null;}
}
var sheet =new Array(3);
function Load_Html(getFile,sht,no){
	sheet[no]=sht;http_obj=createHttpRequest_ibs();
	if(http_obj){
		switch(no){
			case 0:	http_obj.onreadystatechange=check_0;	break;
			case 1:	http_obj.onreadystatechange=check_1;	break;
			case 2:	http_obj.onreadystatechange=check_2;	break;
		}
		http_obj.open("GET",getFile);
		http_obj.send(null);
	}
}
function check_0() {
	if (http_obj.readyState == 4) {
		if(http_obj.responseText.length!=0){
			document.getElementById(sheet[0]).innerHTML = http_obj.responseText;
			Load_Html("../../js/category1.html","category",1);
		}
	}
}
function check_1() {
	if (http_obj.readyState == 4 ) {
		if(http_obj.responseText.length!=0){
			document.getElementById(sheet[1]).innerHTML = http_obj.responseText;}
			Load_Html("../../js/banner1.html","banner",2);
		}
}
var jscript/*@cc_on=@_jscript_version@*/;
function check_2() {
	if (http_obj.readyState == 4 ) {
		if(http_obj.responseText.length!=0){
			document.getElementById(sheet[2]).innerHTML = http_obj.responseText;}
			if(self.jscript=="5.6"){
				footer.style.top=main.clientHeight;
			}
		}
}

