    function doLoad(div,url) {
        document.getElementById('loader').style.left=(screen.width/2)-100;
        document.getElementById('loader').style.top=document.body.scrollTop+(screen.height/2)-200;
        document.getElementById('loader').style.visibility='';

        var query = div;
        var req = new Subsys_JsHttpRequest_Js();

        req.onreadystatechange = function() {
            if (req.readyState == 4) {
                if (req.responseJS) {
                    document.getElementById(div).innerHTML = req.responseJS.text||'';
		    document.getElementById('loader').style.visibility='hidden';
                }
            }
        }

        req.caching = false;
        req.open('POST', url, true);
        req.send({ q: query, test:303 });
    }

function full(url,width,height)
  {
      var se, str = "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,alwaysRaised=yes,hotkeys=0";
      if (window.screen)
      {
            var ah = screen.availHeight - 30;
            var aw = screen.availWidth - 10;
            var xc = (aw - width) / 2;
            var yc = (ah - height) / 2;
       
            str += ",left=" + xc + ",screenX=" + xc;
            str += ",top=" + yc + ",screenY=" + yc;
      }
      window.open(url,"se",str).focus();
  } 