//OPEN MENUS

	LstOM = '';

function mnu(ddnme){
		if(LstOM != ''){
		window.document.getElementById(LstOM).style.display = 'none';

			window.document.getElementById(LstOM + 'td').style.background =
'#006699';

		window.document.getElementById(ddnme).style.display = 'block';

			window.document.getElementById(ddnme + 'td').style.background =
'#5A8DA1';

		LstOM = ddnme;
		}else{
		window.document.getElementById(ddnme).style.display = 'block';
			window.document.getElementById(ddnme + 'td').style.background =
'#5A8DA1';
		LstOM = ddnme;
		}
	}

//CLOSE MENUS

function mnuCls(e){
	if(e){
		var obj = e.target
	}else{
		var obj = event.srcElement
	}
	if(obj.nodeName != 'A'){
		if(LstOM != ''){
			window.document.getElementById(LstOM).style.display = 'none';
			window.document.getElementById(LstOM + 'td').style.background =
'#006699';
			}else{}
	}
}
document.onmousedown = mnuCls

// BORDER ON FOR FIELDS

	function brdrON(obj){
		obj.style.borderColor = '#fff';
		}
	function brdrOFF(obj){
		obj.style.borderColor = '#5A8DA1';//color has to match .searchFLD in the
css
		}

//END JAVASCRIPT
