function highlight (toHighlight) {
	toHighlight.style.backgroundColor='#FF6F00';
 
  }
function unHighlight(toUnHighlight) {
	toUnHighlight.style.backgroundColor='white';
}

function naviClick(clicked) {
	window.location.href=clicked.childNodes[1];	
}



function openLink(url, windowName) {
   myWindow = window.open(url, windowName, 'width=600,height=350,top=20,left=20,scrollbars=yes,resizable=yes');
}

function openImage(url, windowName) {
    myWindow = window.open('about:blank', '_blank', 'width=200,height=200,top=20,left=20,scrollbars=yes,resizable=yes');
    
    myWindow.document.open();
    myWindow.document.write('<html><head><title>' + windowName +'</title></head><body>');
    myWindow.document.write('<a href="javascript:close()"><img border="0" src="' + url + '"></img></a><p>Zum Schließen dieses Fensters bitte in das Bild klicken.</p></body></html></img>');
    myWindow.document.close();
    while (!myWindow.document.images[0].complete);
    borderWidth = 50;
    borderHeight = 150;
    myWindow.resizeTo(myWindow.document.images[0].width + borderWidth, myWindow.document.images[0].height + borderHeight);
   
    myWindow.scrollbars = true;
}
