 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.nationalparkhaus-greetsiel.info') {
                        key = 'ABQIAAAACQaUutT6wdOQigd39EABRhTCWl1KHvt3S3mxBHeP7u_9lnlXOhRUaE-HNYpqKbdQJEsuBJiNUeg3uw';
        }
		else if (host == 'nationalparkhaus-greetsiel.info') {
                        key = 'ABQIAAAACQaUutT6wdOQigd39EABRhR46yIKb1GdC8CWFsn6qdbUXYcP5hSwXeX3uHQZ5EfqxD0t4tR9Y6oQgA';
        }
		

		
        // 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(); 