<!--
var t;

function startTimer(objHide){
	t = window.setTimeout('dropHide("' + objHide + '")',1500);
}

function stopTimer(){
	window.clearTimeout(t);
}

function changeView(objHideShow) {
	stopTimer();
	var objStyle = document.getElementById(objHideShow).style;
	objStyle.display = objStyle.display? "":"block";
}

function dropHide(objHide) {
	var objStyle = document.getElementById(objHide).style;
	objStyle.display = "";
}
//-->