// lschlenker 21.06.2004 für happytree
<!--
function wp (x,y,abb) {
		text="width="+x+",height="+y+",scrollbars=no";
		neuwin = open("","",text);
        neuwin.document.open();

        with (neuwin.document) {
        	write("<html><head><title>Baumpflege - happytree");
        	write("</title></head>");
        	write("<body bgcolor='#009900'");
        	write("text='#000000' topmargin=0 leftmargin=0>");
        	write("<img src='"+abb+"' width='"+x+"'");
        	write(" height='"+y+"' border='0'>");
        	write("</body></html>");
        	}
        	neuwin.document.close();
        	neuwin.moveTo(40,40);
        	neuwin.focus();
        }


function pc() {
  	     neuwin.close();
}

-->
