/*
JavaScript CGI GET Emulator Version 1.0      
Author : Borislav Zlatev  (boris@zlatev.net) (C) 2002 
Last Modified: 08/01/02
All rights reserved!
-----------------------------
This code may be used and modified by anyone so long as this copyright notice and the comments above remain intact.  
By using this code you agree to indemnify the Author from any liability that might arise
from its use.                                                  
Selling the code for this program without prior written consent is     
expressly forbidden. 
This is a beta release meant for TESTING ONLY until this line is removed by the author.
-----------------------------
*/
//var Referrer = "http://icirr.brinkster.net/UPcheck.aspx";
//if(document.referrer != Referrer) this.location.href = Referrer;

var QueryString;

function Request(QueryString){
this.QueryString=QueryString;
}
function queryString(key, value){
this.key=key;
this.value=value;
}

var urlList; 
var tmp;

var tmpstr = new String(document.location);
var paramList = tmpstr.split("?");

try{
if(paramList.length>1) 
  urlList = paramList[1].split("&");

if(urlList.length>1){
  QueryString = new Array(urlList.length);
  for(var i=0; i<urlList.length; i++){ 
    tmp = urlList[i].split("=");
    if(tmp.length>1){
      QueryString[i] = new queryString(tmp[0],tmp[1]);
    }
  }
  Request = new Request(QueryString);
}    
}
catch(e) {}