Hi, I'm looking to force refresh all users browsers and re-download all .css and .js files. I've managed to reload all users pages using AJAX but I now need to change links in my page.tpl from:

@import "/modules/node/node.css";@import "/modules/system/defaults.css";

to:

@import "/modules/node/node.css?rand=[timstamp-here]";@import "/modules/system/defaults.css?rand=[timstamp-here]";

I can't find a way to modify the $style and $script to include a query in the page.tpl before the page renders. I'm only looking to add the query to each link if a query exists in the address bar. Example: if ($_GET['op'] = 'refresh').

Any suggestions?

Thanks a bunch.