﻿
function mAjaxFile(bv)
{
var html  ='  <html>';
   html +='  <script>';
   html +='  var memo="'+bv+'";';
   html +='  parent.ShowHtmlFile(memo);';
   html +='  </scr'+'ipt>';
   html +='  </html>';
   amehistory.document.open();
   amehistory.document.write(html);
   amehistory.document.close();
}

function mAjaxFolder(bv)
{
var html  ='  <html>';
   html +='  <script>';
   html +='  var memo="'+bv+'";';
   html +='  parent.ShowHtml(memo);';
   html +='  </scr'+'ipt>';
   html +='  </html>';
   amehistory.document.open();
   amehistory.document.write(html);
   amehistory.document.close();
}
function mAjaxFileBack(bv)
{
var html  ='  <html>';
   html +='  <script>';
   html +='  var memo="'+bv+'";';
   html +='  parent.ShowHtmlFileBack(memo);';
   html +='  </scr'+'ipt>';
   html +='  </html>';
   amehistory.document.open();
   amehistory.document.write(html);
   amehistory.document.close();
}
function mAjaxGoBack(bv)
{
var html  ='  <html>';
   html +='  <script>';
   html +='  var memo="'+bv+'";';
   html +='  parent.Goback(memo);';
   html +='  </scr'+'ipt>';
   html +='  </html>';
   amehistory.document.open();
   amehistory.document.write(html);
   amehistory.document.close();
}

function mBack()
{
    history.go(-1)
}
