	var fileBox
	
	function openFilebox(link,breit,hoch,name)
		{
		fileBox = window.open(link,name,"width="+breit+",height="+hoch+",locationbar=no,toolbar=no,menubar=no,resizable=yes,status=no,scrollbars=no,left=70,top=70");
		fileBox.focus();
		}
	
	function openMaps()
		{
		var link ="http://www.filebox.de/prov_start.php?provider=macinproduction&dmode=custom";
		var link ="http://maps.google.de/maps?f=d&hl=de&geocode=&saddr=&daddr=Donnerstrasse+10,+Ottensen+22763+Hamburg,+Hamburg,+Hamburg,+Deutschland&mra=pe&mrcr=0&sll=53.549253,9.924023&sspn=0.007012,0.015686&ie=UTF8&t=h&ll=53.549253,9.924023&spn=0.001498,0.003358&z=18";
		var breit = "965";
		var hoch = "600";
		var name= "Routenplaner";
		googleMaps = window.open(link,name,"width="+breit+",height="+hoch+",locationbar=no,toolbar=no,menubar=no,resizable=yes,status=no,scrollbars=no,left=70,top=70");
		googleMaps.focus();
		}

