That is using flash and a new window. The new window part is pretty easy.
Code:
<a href="somewhere.html" target="_blank"><img src="thumb.gif" alt="thumb" /></a>
There are other ways to do this I think the '_blank' may be deprecated now. You could use php on the new page to grab the record for example
Code:
<a href="somewhere.php?letter=a" target="_blank"><img src="thumb_a.gif" alt="A thumb" /></a>
Then on the somewhere page
PHP Code:
$letter = $_GET['letter'];
Then send that $letter to the flash. That $letter can also be used to display the logo and text on the page. I don't think there is a script made on here for this yet. You might be able to find one on google and modify it. You just need the a flash player for sound, the letter sound files, and your logos.
Bookmarks