
<!-- Popup Fenster
function new_window2(fenster,width,height) {
    win2=window.open("",fenster,"resizable=yes,status=no,scrollbars=yes,toolbar=no,menubar=no,width="+width+",height="+height); }
// End -->

<!-- Pulldown Navigation Start
function formHandler(pulldown){
var URL = document.pulldown.site.options[document.pulldown.site.selectedIndex].value;
window.location.href = URL;
}
// End -->


<!-- Table Hovering
function tableruler()
{
	if (document.getElementById && document.createTextNode)
	{
		var tables=document.getElementsByTagName('div');
		for (var i=0;i<tables.length;i++)
		{
			if(tables[i].className=='hover')
			{
				var trs=tables[i].getElementsByTagName('tr');
				for(var j=0;j<trs.length;j++)
				{
					if(trs[j].parentNode.nodeName=='TBODY')
					{
						trs[j].onmouseover=function(){this.className='hovered';return false}
						trs[j].onmouseout=function(){this.className='';return false}
					}
				}
			}
		}
	}
}
-->