function CopyURL() {
    var myHerf = top.location.href;
    //var title=document.title;
    if (window.clipboardData) {
        var tempCurLink = "这是我在中国儿童资源网上发现的非常好的作品,值得推荐!" + myHerf;
        var ok = window.clipboardData.setData("Text", tempCurLink);
        if (ok) alert("按Ctrl + V ,粘贴到QQ上和您的朋友一起分享快乐吧！");
    } else {
        alert("对不起，目前此功能只支持IE，请直接复制地址栏的地址！");
    }
}
function MM_popupMsg(msg) { //v1.0
    alert(msg);
}
function MM_down() { //v1.0
    alert("这是本栏的最后一页,请点击上一页!");
}
function MM_up() { //v1.0
    alert("这是本栏的最前一页,请点击下一页!");
}
function GoToBestPosition() {
    var objBestPosition = document.getElementById("22");
    var intBestPosition = getTop(objBestPosition);
    window.scrollTo(0, intBestPosition);
}
function getTop(e) {
    var offset = e.offsetTop;
    if (e.offsetParent != null) offset += getTop(e.offsetParent);
    return offset;
}
