Ok, we're bound to be able to figure this out...
Look at this example...I think he did what you are trying to do...
http://www.wildsalmoncenter.org/about/directions.php
Here is his coding...
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAw7q0NJy4wEu_PKsFS9CLrRSbg8WiBs6NjTch06ykVNw9vNBnvhSGF_Tn2MCmMKQctAFcjn0vGrVRoQ" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("directionsToWSC"));
map.addControl(new GSmallMapControl());
map.setCenter(new GLatLng(45.528187,-122.680291), 15);
// Our info window content
// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);
//marker.openInfoWindowTabsHtml(infoTabs);
marker.openInfoWindowHtml("<strong>Wild Salmon Center</strong><br>721 NW 9th Ave, Suite 300<br>Portland OR<br>503-222-1804");
//map.openInfoWindow(map.getCenter(), document.createTextNode("Wild Salmon Center,721 NW 9th Ave, Portland OR"));
}
}
//]]>
</script>
Look what his guy did with his...He added a .jpg file for his logo
http://www.blogas.lt/polyetilen/
Here is his coding...
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAwLBma8rU1z-VFJpkr8ZTfBQMcnbMocCfpba5exyAYCA49-QZUxTBwXl63ANDava6-M2feBaUwS8_Yg"
type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.addControl(new GOverviewMapControl());
map.setCenter(new GLatLng(54.71794444, 25.2480638888),17, G_SATELLITE_MAP);
map.openInfoWindowHtml (map.getCenter(), '<div style="text-align: center;">
<img src="http://www.blogas.lt/uploads/polyetilen_polyetilen_logo.jpg" border="1"><br><span style="font-size: 11px;font-family: Georgia;">Lietuva, Vilnius, �e�kin�</span></div>');
GEvent.addListener(map, "moveend", function() {
var center = map.getCenter();
document.getElementById("message").innerHTML = 'Koordinat�s: ' + center.toString();
});
}
}
//]]>
</script>
.