function printNode() {
	oldnode = document.getElementById("druck");
	if (oldnode) {
		fenster = window.open("emptypage.html", "Druckfenster", "width=300,height=200");
		i=0;
			
		do {
			node = fenster.document.getElementById("dnode");
			if (node==null) {
				setTimeout("pass()",200);
				i++;
			}
		} while (node==null && i<10); // FireFox may not have built the node yet
		if (node!=null) {
			if (node.firstChild) {
				node.removeChild(node.firstChild);
			}
			node.appendChild(oldnode.cloneNode(true));
			//fenster.print();
			alert("SCHLIESSEN");
		} 
	}
}

function pass() {}