Possible Duplicate:
When should I use Inline vs. External Javascript?
I have some javascript variables that I use in my javascript (ie. external javascript files)
This javascript variables is page specific and varies per page and user.
Is it better to have these in any other javascript file meaning an extra http request or including it within the html content of the page, bloating the page.
I like separation but want to do all to maximize performance, so either increasing html page size or extra http request.
I ask this question in terms of performance/optimization.
Opinions on this please?