Robert, Thanks for your report. Unless I have misunderstood something (which is entirely possible), this is a bug in your program rather than in python.
The error you describe is because your program is referring to the variable 'links' before defining it. Move the line frameManager = FrameManager( links['Info'][0] ) until after you define links, and the error vanishes. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

