function anfahrt(strasse,plz,ort,country,name) {

	routewin=open('','routewindow',"resizable=1,location=0,directories=0,status=0,menubar=0,scrollbars=yes,toolbar=0");
	routewin.document.open();
	routewin.document.writeln('<html><head><title>city-map verbindet Sie zu map24 ...</title></head><body text="#000066" bgcolor="#ffffff"><font face="Arial"><h2>Bitte warten...</h2><h3>city-map verbindet Sie zu map24...</h3></font></body></html>');
	var idstring='tostrasse='+escape(strasse)+'&to='+plz+'&toort='+escape(ort)+'&tocountry='+escape(country)+'&toname='+escape(name)+'&tlg=de';
	routewin.document.location.replace('http://city-map.net/city/anfahrt.pl?'+idstring);
	routewin.document.close();
	
	// set size
	routewin.resizeTo(800,600);

	// center window
	x=screen.width/2-400;
	y=screen.height/2-300;
	routewin.moveTo(x,y);

	// focus 
	routewin.focus();
}