When called, the pconnect() function will first look for a persistant link with the same info you passed in the function... else opens one for future use.
The mysql_close() doesn't close any connections opened by pconnect().
You should definately use pconnect whenever possible, as you'll bypass opening and closing multiple connections per each page generated.