 function include_gmaps_api(){        var host, key;        host = location.host;        path = location.pathname;        // Do you know that Google Maps API can be used in 'localhost' context?        // It is very useful for every developer. Try it.        if(host == 'www.bauchemie-uplengen.de') {                                      // Google Maps API key for http://localhost/my_project/trunk/foo/                        key = 'ABQIAAAACQaUutT6wdOQigd39EABRhSRk8zBi1LLeYNU0KczTFLPmxmmuBTaSKUKblmNIuhRHz_2-ePhywAJzQ';                     } 				else if(host == 'bauchemie-uplengen.ns8.omg.de') {                                      // Google Maps API key for http://localhost/my_project/trunk/foo/                        key = 'ABQIAAAACQaUutT6wdOQigd39EABRhSRk8zBi1LLeYNU0KczTFLPmxmmuBTaSKUKblmNIuhRHz_2-ePhywAJzQ';                     }		        // Include Google Maps API from maps.google.com            document.write('<scr'+'ipt src="http://maps.google.com/maps?file=api&v=1&key='+key+'" type="text/javascript"></scr'+'ipt>');}// Entry point.include_gmaps_api(); 
