﻿// JScript 文件
$(function(){
initReport();
});

function initReport(){
$("img#leaderMail,img#Report").each(function(){
$(this).css({"cursor":"pointer"});
$(this).click(function(){
var openurl = '/CFolders/App/'+this.id+'.htm';
window.open(openurl,"","menubar=no,toolbar=no,width=600,height=360,resizable=no");
});
});

}

