Basically, as far as I remember, 'advanced' is a separate script which uses Apple's Address Book app to look-up the picture of the sender of the email and use it as the image in the Growl notification.
So - you should use only one:
'Advanced' if you want the picture of the sender in the notification, and don't mind AppleScript launching Address Book every time you get an email (I tend not to as I launch abook on login and hide it.)
Or you could use the normal one.
It's really up to you. I assumed that the relevant info was in the 'readme' files for the scripts - but maybe it's not - I haven't touched them for a couple of years.
If you want to use the so called 'advanced' scripts for either Mail.app or Entourage and want Address Book launched, and hidden, on login - you can use the following script (paste it into 'Script Editor.app' then save as an application - then add that application to your login items from the 'Accounts' preference pane in System Preferences.)
Code: Select all
tell application "Address Book"
activate
close first window
end tell
[url=applescript://com.apple.scripteditor?action=new&script=tell%20application%20%22Address%20Book%22%0D%09activate%0D%09close%20first%20window%0Dend%20tell]Or click here to create a new script automatically without copy and paste[/url]