Note: this is somewhat tech oriented specification about installing the widgets. It requires basic html skills and access to your server and pages. If you don't understand it, give it to your nearest technical support guy. The installation shouldn't be so hard, though...
We have tried to collect a lot of exonyms (aliases) of our destinations. It means that we accept as well 'venice' and 'venezia'. Still, it might be possible that we don't have the name in your language if that's not english.
We would appreciate if the site using our widget would somehow indicate that the content comes from us! The partner can choose the most suitable way for doing that. We would recommend a header, which is also an easy way of separating the widget part from the rest of the content on a destination page. Here's an easy example, how to do it in a stylish way!
<h2>
<span style="float: right; font-size: 10px; font-variant: small-caps;">
powered by: <a href="http://www.tripsay.com"> TripSay </a>
</span>
Destination tips
</h2>
<script src="http://maps.google.com/maps?file=api&v=2.x&key=API_KEY" type="text/javascript"></script>
<script type="text/javascript" src="http://www.tripsay.com/partner/widget/destination/DESTINATION"></script>
Well, this is more tricky. Basically you need to get the destination name SOMEHOW. One place where to usually get it from is the URL. Here is a short example of how you will get the name from url, if it's in format
http://www.yoursite.com/some/paths/before/the/name/venice/
Sadly we don't have the resources to support you here so you are pretty much on your own with this. :(
<script src="http://maps.google.com/maps?file=api&v=2.x&key=API_KEY" type="text/javascript"></script>
<script type="text/javascript">
var d = window.location.href;
d = d.substring( d.lastIndexOf('/') + 1 );
document.write('<scri'+'pt type="text/javascript" ' +
'src="http://www.tripsay.com/partner/widget/destination/' + d + '"></scr' + 'ipt>');
</script>