@File: /surebert/browser/$_GET.js
@Description: An array of all query params e.g. url?name=paul -> $_GET['name'] = 'paul'. There is a global reference to this name $_GET. Keys that are not foudn return false;
//if the url of the page was http://www.surebert.com?name=paul you could reference that query data like this
if($_GET['name'] =='paul){
alert('hello paul');
}