After reading all the brilliant replies regarding both security and method, I've worked my own way around the problem, and I'll post it here for the benefit of others. Skip to the bottom for the solution, it's all that matters right? ;).
Uploadify uses it's own default session...
This is an annoyance that means that when accessing uploadify.php, any session variables you had previously stored can't be accessed from the current (uploadify) session. You're essentially looking at a session object that is completely unrelated to the session you made. Aaah, so what do we do, pass it through the javascript?
You "can" pass a reference to the session through javascript, but javascript is client (user) side, and because of this, a user can change the session reference before it is sent off to the server. He could effectively fake his session ID. This is actually terrifyingly dangerous, at least in the case of my application.
The solution...
Do NOT use the default session_start() on it's own, which AFAIK can not be referenced by an ID. Instead, every time you use session_start(), set an ID for the session you wish to use, (which I now feel is good practice regardless).
EVERY SINGLE TIME you wish to start a session
session_id("IDHere");
session_start();
IMPORTANT: Setting a unique session for each user.
Sessions are variables shared between the server and every other client connecting with reckless abandon. If you want to store session variables that are unique to each individual user of your site, the session_id HAS to be some sort of completely unique dynamic ID relative to that user. This can be accessed from a cookie, or more securely a database (the user's unique ID?).
Edit: After a bit of research, it seems that default sessions (without an ID) use the sessionID "PHPSESSID". So although I haven't tried it yet, setting session_id("PHPSESSID"), before you start the session in uploadify.php may fix the problem too.
But still, if a plugin just so happens to use an identical session variable to you inside the same session, problems could spring up, so it's probably best to make your session with it's own unique ID anyway.