function googleInfo(script_filename) 
{
    // This function generates the necessary credentials to load Google Maps on a webpage 
    var file = 'http://maps.google.com/maps?file=api&amp;v=2.x';
    var key = "ABQIAAAAjeSGtc7kl2mgRWmM74a_BhQy4xwwxYVeIeSrcsfF7PAH9EtvMxRL0RZgRXZk6xtcRjhKCGlVbITRMg";

    // Write script
    document.write('<script');
    document.write(' language="javascript"');
    document.write(' type="text/javascript"');
    document.write(' src="' + file + '&amp;key=' + key + '">');
    document.write('</script>');
}

/* Check if we should load the Google Maps file */
googleInfo();
