ie5  = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById && !window.opera);
opera = (window.opera);



function highlightThis(div,act){
	if (act==true)
	{
		div.style.backgroundColor='#e9eff7';
	}
	else
	{
		div.style.backgroundColor='#ffffff';
	}
}

function highlightField(div,name){
		div.style.backgroundColor=name;
}


function opacIn(divid) {
	if(opac3 != 100){
		opac3+=5;
		if(ie5) {document.getElementById(divid).filters.alpha.opacity = opac3;}
		if(ns6) {document.getElementById(divid).style.MozOpacity = opac3/100;}
		setTimeout('opacIn("'+divid+'")', 10);
		}
}
function opacOut(divid) {
	if(opac3 > 0){
		opac3-=5;
		if(ie5) {document.getElementById(divid).filters.alpha.opacity = opac3;}
		if(ns6) {document.getElementById(divid).style.MozOpacity = opac3/100;}
		setTimeout('opacOut("'+divid+'")', 10);
		}
		else{document.getElementById(divid).style.display="none";}
}

