function navOut(wat)
{
wat.className = 'navnorm';
var index = wat.sourceIndex;
if(index == undefined)
	return;
document.all[index+1].className='navitem';
}

function navOver(wat)
{ 
wat.className = 'navover';
var index = wat.sourceIndex;
if(index == undefined)
	return;
document.all[index+1].className='navitemsel';
}



function popUp(url,width,height,name) 
{
OpenWin=window.open(url, name, "width="+width+",height="+height+",toolbar=no,focus=yes,menubar=no,location=no,scrollbars=yes,resizable=no,status");
OpenWin.focus();
}


function ExplorerFix() 
	{ 
	for (a in document.links) document.links[a].onfocus = document.links[a].blur; 
	}


