Simply opening iTunes window and displaying Podcasts playlist

Right now I cant get iTunes to do the simplest thing. When its already launched, I want it to show the users library of podcasts.

So right now, the app is launched, but my window isn’t up and showing. I cant figure out how to simply make the libray show and then switch to my Podcasts section. I’ve tried

tell app “iTunes”
set visible of window to true
end tell

and many others, but I can’t get it to work!

thanks

Moving to OS X…

Try something like this:

tell application "iTunes"
	activate
	reveal (first playlist whose special kind is Podcasts)
end tell

Ahhh!! Thanks so much! I knew it was something little!