﻿// JScript 文件
function ResizePic(iwidth,iheight,imgObj)
{
    var img_src = imgObj.src;
    var oldWidth= imgObj.width ;
    var oldHeight = imgObj.height ;
    if(oldWidth>0 && oldHeight>0)
    {
       if(oldWidth/iwidth>=oldHeight/iheight)
       {
           if(oldWidth>iwidth)
           {  
               imgObj.style.width= iwidth + "px"; 
               imgObj.style.height=(oldHeight *iwidth)/oldWidth + "px"; 
           }                
        }
       else
       {
            if(oldHeight>iheight)
            {  
                imgObj.style.height=iheight + "px"; 
                imgObj.style.width=(oldWidth*iheight)/oldHeight + "px"; 
            }
       }
    }
}

function addBookmark(url, title) {
   if (window.sidebar) { window.sidebar.addPanel(title, url, ''); }
   else if (document.all) {
       window.external.AddFavorite(url, title);
   }
   else if (window.opera && window.print) { return false; }
}

function cpIt(){
var txt = window.location.href;
if(window.clipboardData){
window.clipboardData.clearData();
window.clipboardData.setData("Text", txt);}
else if(navigator.userAgent.indexOf("Opera") != -1) {
window.location = txt;}
else if (window.netscape) {try { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");}
catch (e) { 
alert("你使用的FF浏览器,复制功能被浏览器拒绝！\n请在浏览器地址栏输入'about:config'并回车\n然后将'signed.applets.codebase_principal_support'设置为'true'");
}
var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard);
if (!clip)
return;
var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable);
if (!trans)
return;
trans.addDataFlavor('text/unicode');
var str = new Object();
var len = new Object();
var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString);
var copytext = txt;
str.data = copytext;
trans.setTransferData("text/unicode",str,copytext.length*2);
var clipid = Components.interfaces.nsIClipboard;
if (!clip)
return false;
clip.setData(trans,null,clipid.kGlobalClipboard);
 }
alert(" 下面的信息复制到剪贴板 :\n\n" + txt);
}


//添加浏览量
AddBrowse = function(newsId) {
    var dataStr = {};
    dataStr.method = "AddBrowse";
    dataStr.id = newsId;
    $.ajax({
        type: "post",
        url: "http://10.0.0.12:9000/Ajax.aspx",
        dataType: "json",
        data: dataStr,
        success: function(result) {
            if (result.toString().split("$")[0] == "Suc") {
                    dataStr.method = "GetBrowse";
                    $.ajax({
                        type: "post",
                        url: "http://10.0.0.12:9000/Ajax.aspx",
                        dataType: "json",
                        data: dataStr,
                        success: function(result) {
                            $("#" + newsId).html(result);
                        },
                        error: function() {
                            alert("系统忙，请稍后再试");
                        }
                    });
            } else if (result.toString().split("$")[1] == "Err") {
                alert("失败！");
            }
        },
        error: function() {
            alert("系统忙，请稍后再试");
        }
    });
}
