function HighLightPage() {
	var els = document.getElementsByTagName("a")
	var i
	var elsLength = els.length;
	for (i=0; i < elsLength; i++)
	{
		var el = els.item(i)
		if (el.href==document.location) {
		//el.style.backgroundColor  = "white"
		}
	}
}	


function Quicklink(s){
	var d = s.options[s.selectedIndex].value;
	if (d != "null") {
       location.href = d;
	}
    s.selectedIndex=0;
}

var component
function chackall(component, term, optrem) {
//	document.write (document.myform[component+'_m'].checked)
	if (document.myform[component+'_'+term].checked == true) {
	//document.write (component+'_m')
	document.myform[component+'_'+optrem].checked = false
	}
}


