﻿function ShowReportPanle(cookname)
{
    var user=document.getElementById("hfloginuser").value;
    if(user==0){alert("请先登录，在填写举报信息！");return;}
    if(!document.getElementById("show_report"))
    {
        var mydiv=document.createElement("div");
        mydiv.setAttribute("id","show_report");
        mydiv.style.width="420px";
        mydiv.style.height="280px";
        mydiv.style.backgroundColor="white";
        mydiv.innerHTML="<div id='td_show_report' style=' width:420px;text-align:right;font-size:14px; color:#F45200'><a href='javascript:void(0)' id='close_show_report' class='show_report_style'></a></div><div><iframe id='report_iframe' src='' width='420px' height='260px' scrolling='no' frameborder='0'  border='0' marginwidth='0' marginheight='0'></iframe><div>";
        document.body.appendChild(mydiv);
    }
     var windowElement = document.getElementById("show_report");
     var shadowObj1 = new boxShadow(new boderTemplate_white(),true);
     var windowWidth = document.documentElement.clientWidth;   
     var windowHeight = document.documentElement.clientHeight;
     windowElement.style.position="absolute";
     windowElement.style.left=windowWidth/2-(420/2)+"px";
     windowElement.style.top=windowHeight/2-(280/2)+"px";
     shadowObj1.bind(windowElement,document.getElementById("form1"),false);
     document.getElementById("report_iframe").contentWindow.document.write("<div style='font-size:14px;'>loading...</div>");
     document.getElementById("report_iframe").contentWindow.document.close();
     document.getElementById("report_iframe").src="Cr3Report.aspx?cookname="+encodeURI(cookname)+"&id="+document.getElementById("hfcook_id").value;
     shadowObj1.setCloseButton(document.getElementById("close_show_report"),false);
     shadowObj1.setDragHanlder(document.getElementById("td_show_report"));
}

function ShowYaoqingFriends()
{
    if(!document.getElementById("show_yaoqing"))
    {
        var windowWidth = document.documentElement.clientWidth;   
        var windowHeight = document.documentElement.clientHeight;
        var mydiv=document.createElement("div");
        mydiv.setAttribute("id","show_yaoqing");
        mydiv.style.width="533px";
        mydiv.style.height="330px";
        mydiv.style.position="absolute";
        mydiv.style.backgroundColor="white";
        mydiv.style.top=windowHeight/2-(330/2)+"px";
        mydiv.style.left=windowWidth/2-(533/2)+"px";
        mydiv.style.zIndex=9;
        mydiv.style.display="none";
        mydiv.innerHTML="<iframe id='yaoqing_iframe' src='' width='533px' height='330px' scrolling='no' frameborder='0'  border='0' marginwidth='0' marginheight='0'></iframe>";
        document.body.appendChild(mydiv);
    }
    document.getElementById("show_yaoqing").style.display="block";
    document.getElementById("yaoqing_iframe").contentWindow.document.write("<div style='font-size:14px;'>loading...</div>");
    document.getElementById("yaoqing_iframe").contentWindow.document.close();
    document.getElementById("yaoqing_iframe").src="http://www.chenre.cn/p_addfriend.aspx";
}
