var schTimer,essSt;
essSt=0;
function startSchTimer() {
	schTimer=setTimeout('hide(\'sTable\',1)',600);	
}
function killSchTimer() {
	schTimer=clearInterval(schTimer);
}
function opClEssay() {
	if (essSt==0) {
		hide('bs2',1);
		show('bs2txt','block');
		essSt=1
	} else {
		hide('bs2txt',1);
		show('bs2','block');
		essSt=0;
	}
}
