// ===================================================================
// Author: Paulo Basto <pbasto@arakno.net>
// WWW: http://www.arakno.net/
//
// NOTICE: You may use this code for any purpose, commercial or
// private, without any further permission from the author. You may
// remove this notice from your final code if you wish, however it is
// appreciated by the author if at least my web site address is kept.
//
// You may *NOT* re-distribute this code in any way except through its
// use. That means, you can include it in your product, or your web
// site, or any other form where the code is actually being used. You
// may not put the plain javascript up on your site for download or
// include it in your javascript libraries for download. 
// If you wish to share this code with others, please just point them
// to the URL instead.
// ===================================================================
// Google Maps loader
//-------------------------------------------------------------------
function initialize() {
      if (GBrowserIsCompatible()) {        
	  var map = new GMap2(document.getElementById("map_canvas"),{ size: new GSize(475,364) });  
	  map.removeMapType(G_HYBRID_MAP);
	  var mapControl = new GMapTypeControl();
	  map.addControl(mapControl);
	  map.addControl(new GSmallMapControl());
	  map.setCenter(new GLatLng(-8.845722, 13.262558), 6);
	  map.openInfoWindow(map.getCenter(), document.createTextNode("Sede da Tecnisat"));	  
	  }    
	  
	  }
