This makes it really easy to do AJAX requests with various web browsers.
It takes three variables: u (url), s (0==GET || 1==SEND), and change (optional embeded function... in the example, the function just runs alert() on data returned by the url).
Example: wReq('http://www.YourDomain.com/',0,function(v) { alert(v); });
AJAX Request: Test Now!