<!--

//Timers and script to collaps the baby tr
	var htm1 = "";
	var htm2 = "";
	var f = 0;
	var t = 0;
	var z = 0;
	var ato = 0;
	var a = 380;
	function autoCloseTable(){
		AutoTimeOut = setTimeout("closeTable()",10000);
		ato = 1;
	}
	
	function closeTable(){
		clearTimeout(AutoTimeOut);
		if(document.all){
			window.td1.innerHTML = ""
			window.td2.innerHTML = ""
			window.td1.bgColor = "#98A9B3"
			window.td2.bgColor = "#98A9B3"
			a = 380;
			restTimerE();
		}
		else{
			document.getElementById("td1").innerHTML = "";
			document.getElementById("td1").bgColor = "#98A9B3";
			document.getElementById("td2").innerHTML = "";
			document.getElementById("td2").bgColor = "#98A9B3";
			a = 380;
			restTimerN();
		}
	}
	function restTimerN(){
		if(a>0){
			document.getElementById("td1").height = a;
			document.getElementById("td2").height = a;
		}
		Timer=setTimeout("restTimerN()",5);
		t=1;
		a=a-1;
		if(a<1){
			clearTimeout(Timer);
			clearTimeout(AutoTimeOut);
		}
	}		
	function restTimerE(){
		if(a>0){
			window.td1.height = a;
			window.td2.height = a;
		}
		Timer=setTimeout("restTimerE()",20);
		t=1;
		a=a-5;
		if(a<1){
			clearTimeout(Timer);
			clearTimeout(AutoTimeOut);
		}
	}		
	function openTable(){
		if(document.all){
			window.td1.bgColor = ""
			window.td2.bgColor = ""					
			window.td1.innerHTML = htm1;
			window.td1.height = 380;
			window.td2.innerHTML = htm2;
			window.td2.height = 380;
			}
		else{
			document.getElementById("td2").bgColor = "";
			document.getElementById("td1").innerHTML = htm1;	
			document.getElementById("td1").height = 380;
			document.getElementById("td2").bgColor = "";
			document.getElementById("td2").innerHTML = htm2;	
			document.getElementById("td2").height = 380;
		}
	}
	function checkMouse(v){
		if(v==1 && f==0 && z==1){
			//this is a mouseover
			if(t==1)
				clearTimeout(Timer);
			if(ato==1)
				clearTimeout(AutoTimeOut);
			openTable();
			//set the flag on
			f=1;
		}else{
			//this is a mouseout - reset the flag
			f = 0;
			autoCloseTable();
		}
	}
//-->
