Noob-alert.
I would like to make the 01.js & 02.js into one JS-file but the 2 codes still need to work independent. The following example calls the javascript which need to be merged:
<script>e9=new Object();e9.size="728x90";e9.addBlockingCategories="Pop-under,Pop-up";e9.noAd=1;</script><script src=01.js></script>
<script>sr_adspace_id = 1;sr_adspace_width = 728;sr_adspace_height = 90;sr_ad_new_window = true;sr_adspace_type = "graphic";</script>
<script src=02.js></script>
How can I use the statements (ie., sr_adspace_type, e9.size, etc...) to run the right script when integrated into 1 file?