function tabHighlight(tabNo,action)
{
	switch(action) {
		case 1:
			eval("document.getElementById(\"cell" + tabNo + "\").style.backgroundColor=\"#FEF395\"");
			eval("document.getElementById(\"cell" + tabNo + "\").style.cursor=\"hand\"");
			eval("document.getElementById(\"text" + tabNo + "\").style.color=\"#CC0000\"");
			eval("document.getElementById(\"text" + tabNo + "\").style.textDecoration=\"underline\"");
			break;
		case 0:
			eval("document.getElementById(\"cell" + tabNo + "\").style.backgroundColor=\"#FFF0B2\"");
			eval("document.getElementById(\"cell" + tabNo + "\").style.cursor=\"hand\"");
			eval("document.getElementById(\"text" + tabNo + "\").style.color=\"#000000\"");
			eval("document.getElementById(\"text" + tabNo + "\").style.textDecoration=\"none\"");
			break;
		}
}