﻿// JScript 文件
function showsubmenu(sid)
{
  var submenu = document.getElementById("submenu"+sid);
  var imgmenu = document.getElementById("imgmenu"+sid);
  var menu = document.getElementById("imgmenu" + sid +sid);
  
if (submenu.style.display == "none")
{
    submenu.style.display="";
     menu.src="/Resources/Images/BuySell/G01.gif";
}
else
{
    submenu.style.display="none";
    menu.src="/Resources/Images/BuySell/G02.gif";
}
}

//打印

function preview()
{
    bdhtml=window.document.body.innerHTML;
    sprnstr="<!--startprint-->";
    eprnstr="<!--endprint-->";
    prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);
    prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
    window.document.body.innerHTML=prnhtml;
    window.print();
}
//用OUTLOOK发邮件

function mail()
{
    window.location.href='mailto:?subject=【Agropages】&body=I am recommended by specially to you this article  on the 【Agropages】.';
}

