function adjustIFrameSize (iframeWindow) {
  if (iframeWindow.document.height) {     
	var iframeElement = document.getElementById(iframeWindow.name);
  
	iframeElement.style.height = iframeWindow.document.height + 10 + 'px';
   // iframeElement.style.width = iframeWindow.document.width + 10 + 'px';
  }
  else if (document.all) {
    var iframeElement = document.all[iframeWindow.name];
    if (iframeWindow.document.compatMode &&
        iframeWindow.document.compatMode != 'BackCompat') 
    {
      iframeElement.style.height = 
iframeWindow.document.documentElement.scrollHeight + 10 + 'px';
      //iframeElement.style.width = 
//iframeWindow.document.documentElement.scrollWidth + 10 + 'px';
    }
    else {
      iframeElement.style.height = 
iframeWindow.document.body.scrollHeight + 10 + 'px';
    //  iframeElement.style.width = 
//iframeWindow.document.body.scrollWidth + 10 + 'px';
    }
  }
}
function macheRequest(url) {
      http_request = false;
      if (window.XMLHttpRequest) {
          http_request = new XMLHttpRequest();
          if (http_request.overrideMimeType) {
              http_request.overrideMimeType('text/xml');
          }
      }  



      http_request.open('GET', url, true);
      http_request.send(null);
}

