function openwindow(loc,x,y)
{
//         	Fenster = window.open(loc, "infowindow", "width="+x+",height="+y+",resizable=no,scrollbars=no");
         	Fenster = window.open("", "infowindow", "width="+x+",height="+y+",resizable=no,scrollbars=no");
			Fenster.location.href=loc;
			Fenster.moveTo(20,20); // moveTo bringt im IE Fehler wenn Seite direkt im window.open geöffnet wird
	       	Fenster.focus();
}