function SetActive(td, mode)
{
return;
	if(mode=="1")
	{
		if(td.className="menu_0")	
		{
			td.className="menu_0s";
		}
		if(td.className="menu_1")	
		{ 
			td.className="menu_1s"; 
			td.all(0).style.color="black";
		}
	}
	else if(mode=="0")
	{
		if(td.className="menu_0s")	td.className="menu_0";
		if(td.className="menu_1s")	
		{
			td.className="menu_1";
			td.all(0).style.color="";
		}
	}
}

function init() {

	resizetable();

	Flash1Obj=document.f1;
	Flash2Obj=document.f2;
	isFlash1Load = (Flash1Obj)?Flash1Obj.GetVariable("a"):0;
	isFlash2Load = (Flash2Obj)?Flash2Obj.GetVariable("a"):0;
	if(isFlash1Load==1){
		document.getElementById("f1").style.visibility = "visible";	
	}	
	if(isFlash2Load==1){
		document.getElementById("f2").style.visibility = "visible";	
	}	
	
	w=screen.width;
	h=screen.height;
	if(w>=1024) w=960; else w=800;
	if(screen.availHeight<780) h=screen.availHeight; else h=screen.availHeight*0.8;
	//window.resizeTo(w, h);

}

function resizetable(i) {
	
	ojbt0 = document.getElementById("t0");
	ojbt1 = document.getElementById("t1"); 
	ojbt2 = document.getElementById("t2");
	objh = (self.innerWidth) ? self.innerWidth : document.body.clientWidth;

	ojbt0.style.width = (objh > 1100) ? "1100px" : "100%"; 
	ojbt1.style.width = (objh > 1100) ? "1100px" : "100%";
	ojbt2.style.width = (objh > 1100) ? "1100px" : "100%";

}





