====== loadURI ======
Loads the page at the specified address by substituting the referer.
===== Syntax =====
loadURI = function(aURI, aReferer, aWaitLoaded);
==== Parameters ====
* **//aURI//**
* //functions:// address of loaded page
* **//aReferer//**
* //functions:// [[http://en.wikipedia.org/wiki/HTTP_referer|HTTP referer]], substituted when the page is loaded
* **//aWaitLoaded//**
* //functions:// a flag indicating whether or not to expect a full page loading
===== Notes =====
* If aWaitLoaded = false, then the script will wait for complete page loading (but not more than 20 seconds). Otherwise, the script will load the specified page and continue execution.
===== Examples =====
-loadURI('whatismyreferer.com','http://hellofromwascript.ru');