"Stored Procs are much more powerful (multiple sql querys, temp tables, etc) and much quicker. Im waiting for the day mySql supports them."
Stored procedures are nothing more than a predefined set of queries that you can execute a bit like a batch file. From an SQL point of view, there's nothing they can do that 'normal' queries can't. (that's becuase they are built up of normal SQL queries)
Normal queries can also use temp-tables, and you can start as many queries as you like (just not all at once, which you really don't want anyway)