NS4 = !document.all && (document.layers != null);
IE = document.all != null;
NS6 = !document.all && (document.getElementById != null);
DOM = (document.getElementById != null);
//prenav = new Image()
//prenav.src = "/imagesprenav.jpg"

function los(myForm) {
	document.search.submit();
}

function highlight(myID) {
	document.getElementById(myID).bgColor="#E4E4E4";
   document.getElementById(myID+'1').style.color="#C19B5C";
	//Oselect ="<img src='/images/prenav-select.jpg' width='10' height='10'>";
	//document.getElementById(myID+'1').innerHTML=Oselect;

}

function clearhighlight(myID,colour) {
	//Oselect ="<img src='/images/prenav.jpg' width='10' height='10'>";
	//document.getElementById(myID+'1').innerHTML=Oselect;
	document.getElementById(myID).bgColor=colour;
   document.getElementById(myID+'1').style.color="#E4E4E4";
}

function FocusCol(obj)
{
if (document.getElementById || document.all)
{
obj.style.color="#000000";
obj.style.backgroundColor="#ffffff";
}
}
//normale Ansicht
function BlurCol(obj)
{
if (document.getElementById || document.all)
{
obj.style.color="#000000";
obj.style.backgroundColor="#e4e4e4";
}
}