<!--
/*	Globale Scripts von DeWitts Homepage

	=========================================================
	|        Javascripts by D.Heinze (dew1tt@gmx.de)        |
	|														|
	|  Die folgenden Scripts sind zur nicht-kommerziellen   |
	|  Weitergabe freigegeben, jedoch nur unter der Vor-	|
	|  raussetzung, dass dieser Header erhalten bleibt.		|
	|														|
	|  The following scripts may be resistributed for non-	|
	|  commercial use, provided this header remains intact.	|
	=========================================================
*/


function openWin(url,name,width,height) {
	window.open(url,name,"width="+width+",height="+height+",dependent=yes,location=no,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=yes");
}

function disp(id) {
	if (document.getElementById(id).style.display == 'none') {document.getElementById(id).style.display = '';}
	else {document.getElementById(id).style.display = 'none';}
}

function linkactive(id,dir) {
	if (dir == 'l')	{document.getElementById('link'+id).innerHTML = "&laquo;";}
	else {document.getElementById('link'+id).innerHTML = "&raquo;";}
}

function linkunactive(id) {
	document.getElementById('link'+id).innerHTML = "";
}
//-->