710 lines
27 KiB
Plaintext
710 lines
27 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthPrint.aspx.cs" Inherits="FineUIPro.Web.Report.MonthPrint" %>
|
||
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head id="Head1" runat="server">
|
||
<title></title>
|
||
<script type="text/javascript" language="javascript">
|
||
function pagesetup_null() {
|
||
try {
|
||
var RegWsh = new ActiveXObject("WScript.Shell")
|
||
hkey_key = "header"
|
||
RegWsh.RegWrite(hkey_root + hkey_path + hkey_key, "")
|
||
hkey_key = "footer"
|
||
RegWsh.RegWrite(hkey_root + hkey_path + hkey_key, "")
|
||
} catch (e) { }
|
||
}
|
||
//设置网页打印的页眉页脚为默认值
|
||
function pagesetup_default() {
|
||
try {
|
||
var RegWsh = new ActiveXObject("WScript.Shell")
|
||
hkey_key = "header"
|
||
RegWsh.RegWrite(hkey_root + hkey_path + hkey_key, "&w&b页码,&p/&P")
|
||
hkey_key = "footer"
|
||
RegWsh.RegWrite(hkey_root + hkey_path + hkey_key, "&u&b&d")
|
||
} catch (e) { }
|
||
}
|
||
function printpr() //预览函数
|
||
{
|
||
pagesetup_null(); //预览之前去掉页眉,页脚
|
||
document.getElementById("div1").style.display = "none";
|
||
var a = window.open('about:blank', 'Print');
|
||
a.document.write('<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>' + document.getElementById('Table5').innerHTML);
|
||
//ar WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
|
||
a.document.all.WebBrowser1.ExecWB(7, 1);
|
||
a.close();
|
||
//document.body.insertAdjacentHTML('beforeEnd', WebBrowser); //在body标签内加入html(WebBrowser activeX控件)
|
||
//WebBrowser1.ExecWB(7, 1); //打印预览
|
||
//WebBrowser1.outerHTML = ""; //从代码中清除插入的html代码
|
||
pagesetup_default(); //预览结束后页眉页脚恢复默认值
|
||
document.getElementById("div1").style.display = "block";
|
||
}
|
||
function print() //打印函数
|
||
{
|
||
pagesetup_null(); //打印之前去掉页眉,页脚
|
||
document.getElementById("div1").style.display = "none";
|
||
|
||
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
|
||
document.body.insertAdjacentHTML('beforeEnd', WebBrowser); //在body标签内加入html(WebBrowser activeX控件)
|
||
WebBrowser1.ExecWB(6, 6); //打印
|
||
WebBrowser1.outerHTML = ""; //从代码中清除插入的html代码
|
||
pagesetup_default(); //打印结束后页眉页脚恢复默认值
|
||
document.getElementById("div1").style.display = "block";
|
||
}
|
||
|
||
</script>
|
||
<style type="text/css">
|
||
body
|
||
{
|
||
font-family:"宋体";
|
||
|
||
}
|
||
|
||
.divstyle
|
||
{
|
||
border: 1px solid #362b36;
|
||
width: 100%;
|
||
}
|
||
|
||
.zhuti
|
||
{
|
||
font-size: 18px;
|
||
text-align: center;
|
||
font-weight: bold;
|
||
}
|
||
.zhuti2
|
||
{
|
||
|
||
text-align: left;
|
||
font-style: italic;
|
||
font-weight: bold;
|
||
}
|
||
.yangshiLeft
|
||
{
|
||
|
||
text-align: left;
|
||
}
|
||
.yangshicenter
|
||
{
|
||
|
||
text-align: center;
|
||
}
|
||
.yangshiright
|
||
{
|
||
|
||
text-align: right;
|
||
}
|
||
.table-d table
|
||
{
|
||
border: 1px solid #362b36;
|
||
border-collapse: collapse;
|
||
margin-bottom: 1px;
|
||
}
|
||
.yangshibold
|
||
{
|
||
|
||
font-weight: bold;
|
||
text-align: center;
|
||
}
|
||
.table-d table td
|
||
{
|
||
border: 1px solid #362b36;
|
||
border-collapse: collapse;
|
||
margin-bottom: 1px;
|
||
}
|
||
.table-c table
|
||
{
|
||
border: 1px solid #362b36;
|
||
border-collapse: collapse;
|
||
margin-bottom: 1px;
|
||
}
|
||
.customlabel
|
||
{
|
||
color: Blue;
|
||
font-weight: bold;
|
||
}
|
||
.style1
|
||
{
|
||
text-align: left;
|
||
height: 40px;
|
||
width: 80px;
|
||
}
|
||
.style2
|
||
{
|
||
width: 9%;
|
||
}
|
||
.style3
|
||
{
|
||
text-align: left;
|
||
font-style: italic;
|
||
font-weight: bold;
|
||
height: 17px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<form id="form1" runat="server">
|
||
<f:PageManager ID="PageManager1" runat="server" AutoSizePanelID="RegionPanel1" />
|
||
<div id="div1">
|
||
<table id="tabbtn" runat="server" width="100%" style="background: url('../Images/bg-1.gif')"
|
||
cellpadding="0" cellspacing="0">
|
||
<tr>
|
||
<td align="right" valign="middle" style="font-size: 11pt; font-weight: bold">
|
||
<asp:Image ImageUrl="~/Images/lv-1.gif" ImageAlign="AbsMiddle" ID="image15" runat="server" />
|
||
<img src="../Images/PageSetup.gif" runat="server" id="Img2" onclick="document.all.WebBrowser.ExecWB(8,1)"
|
||
alt="页面设置" style="cursor: pointer" />
|
||
<img src="../Images/PrintSetup.gif" runat="server" id="btnPrint" onclick="document.all.WebBrowser.ExecWB(6,1)"
|
||
alt="打印设置" style="cursor: pointer" />
|
||
<img src="../Images/PrintPreview.gif" runat="server" id="Img1" onclick="printpr()"
|
||
alt="打印预览" style="cursor: pointer" />
|
||
<img src="../Images/Print.gif" runat="server" id="Img3" onclick="print()" alt="打印"
|
||
style="cursor: pointer" />
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="divstyle">
|
||
<div class="table-d" style=" width:100%">
|
||
<table style=" width:100%">
|
||
<tr style="height: 40px;">
|
||
<td colspan="2" class="zhuti" style="width: 78%">
|
||
Project Monthly Report
|
||
</td>
|
||
<td class="yangshicenter" style="width: 12%;">
|
||
Report Date:
|
||
</td>
|
||
<td style="width:10%;">
|
||
<f:Label ID="Label1" CssClass="customlabel" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="yangshiLeft" style="width: 80px; height:40px;">
|
||
Company:
|
||
</td>
|
||
<td style="width: 480px;">
|
||
<f:Label ID="lblCompany" CssClass="customlabel" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td class="yangshicenter" style="width: 90px;">
|
||
Reported By:
|
||
</td>
|
||
<td style="width: 80px;">
|
||
<f:Label ID="Label2" CssClass="customlabel" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="table-c">
|
||
<table style=" width:100%">
|
||
<tr>
|
||
<td class="zhuti2" colspan="2" style="width: 78%; height:40px;">
|
||
1. PROJECT DATA
|
||
</td>
|
||
<td class="yangshicenter" style="width: 12%; border: 1px solid #362b36; border-collapse: collapse;">
|
||
Job No.:
|
||
</td>
|
||
<td style="width: 10%; border: 1px solid #362b36; border-collapse: collapse;">
|
||
<f:Label ID="Label3" CssClass="customlabel" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="style1">
|
||
Title:
|
||
</td>
|
||
<td style="width: 490px;">
|
||
Add Ethylene Refrigerant to E425
|
||
</td>
|
||
<td class="yangshicenter" style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
BU.
|
||
</td>
|
||
<td style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
<f:Label ID="Label4" CssClass="customlabel" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="2" class="yangshiLeft" style="height: 40px;">
|
||
Site/Block Field /Building:
|
||
</td>
|
||
<td class="yangshicenter" style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
Orginal Budget:
|
||
</td>
|
||
<td style=" border: 1px solid #362b36; border-collapse: collapse;">
|
||
<f:Label ID="Label5" CssClass="customlabel" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="table-c">
|
||
<table style=" width:100%">
|
||
<tr>
|
||
<td class="zhuti2" colspan="6" style="width: 58%; height:40px;">
|
||
2. SHORT EVALUATION
|
||
</td>
|
||
<td colspan="2" class="zhuti2" style="width: 21%; border: 1px solid #362b36; border-collapse: collapse;">
|
||
SCOPE CHANGE
|
||
</td>
|
||
<td class="yangshicenter" style="width: 12%; border: 1px solid #362b36; border-collapse: collapse;">
|
||
Qty
|
||
</td>
|
||
<td class="yangshicenter" style="width: 10%; border: 1px solid #362b36; border-collapse: collapse;">
|
||
RMB
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td style="width:10%" style="height: 40px;">
|
||
SCHEDULE
|
||
</td>
|
||
<td class="style2">
|
||
A
|
||
</td>
|
||
<td style="width:10%">
|
||
COST
|
||
</td>
|
||
<td style="width:9%">
|
||
A
|
||
</td>
|
||
<td style="width:10%">
|
||
SCOPE
|
||
</td>
|
||
<td style="width:9%">
|
||
A
|
||
</td>
|
||
<td colspan="2" class="yangshiright" style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
Approved
|
||
</td>
|
||
<td style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
<f:Label ID="Label7" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
<f:Label ID="Label6" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="2" style="height: 40px;">
|
||
A-As planned
|
||
</td>
|
||
<td colspan="2">
|
||
B-Temp out of planned
|
||
</td>
|
||
<td colspan="2">
|
||
C-Out of planned
|
||
</td>
|
||
<td colspan="2" class="yangshiright" style="border: 1px solid #362b36;
|
||
border-collapse: collapse;">
|
||
Pending
|
||
</td>
|
||
<td style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
<f:Label ID="Label8" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td style="border: 1px solid #362b36; border-collapse: collapse;">
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="table-d">
|
||
<table style=" width:100%">
|
||
<tr>
|
||
<td colspan="3" rowspan="2" class="zhuti2" style="width: 36%; height:80px;">
|
||
3. SCHEDULE
|
||
</td>
|
||
<td colspan="3" class="yangshibold" style="width: 21%; height:40px;">
|
||
SCHEDULED
|
||
</td>
|
||
<td colspan="2" class="yangshibold" style="width: 21%;">
|
||
REVISED
|
||
</td>
|
||
<td colspan="2" class="yangshibold" style="width: 22%;">
|
||
PROGRESS %
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="yangshibold" style="width: 80px; height:40px;">
|
||
START
|
||
</td>
|
||
<td colspan="2" class="yangshibold" style="width: 80px;">
|
||
END
|
||
</td>
|
||
<td class="yangshibold" style="width: 80px;">
|
||
START
|
||
</td>
|
||
<td class="yangshibold" style="width: 80px;">
|
||
END
|
||
</td>
|
||
<td class="yangshibold" style="width: 90px;">
|
||
SCHEDULED
|
||
</td>
|
||
<td class="yangshibold" style="width: 80px;">
|
||
ACTUAL
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="height: 40px;">
|
||
Engineering Civil & Structural
|
||
</td>
|
||
<td class="style1">
|
||
<f:Label ID="Label12" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label13" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label14" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label15" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label16" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label17" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="height: 40px;">
|
||
Engineering Mech., E&I
|
||
</td>
|
||
<td class="style1">
|
||
<f:Label ID="Label18" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label19" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label20" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label21" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label22" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label23" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="height: 40px;">
|
||
Procurement-LLI
|
||
</td>
|
||
<td class="style1">
|
||
<f:Label ID="Label24" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label25" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label26" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label27" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label28" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label29" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="height: 40px;">
|
||
Construction Civil & Structrual
|
||
</td>
|
||
<td class="style1">
|
||
<f:Label ID="Label30" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label31" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label32" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label33" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label34" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label35" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="height: 40px;">
|
||
Construction Mech., E&I
|
||
</td>
|
||
<td class="style1">
|
||
<f:Label ID="Label36" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label37" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label38" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label39" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label40" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label41" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3">
|
||
MC
|
||
</td>
|
||
<td class="style1" style="height: 40px;">
|
||
<f:Label ID="Label42" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label43" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label44" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label45" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label46" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label47" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="table-d">
|
||
<table style=" width:100%">
|
||
<tr>
|
||
<td class="zhuti2" colspan="10" style="height:40px;">
|
||
4. COST
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="yangshibold" style="width: 10%; height:40px;">
|
||
APPROVED BUDGET
|
||
</td>
|
||
<td class="yangshibold" style="width: 10%;">
|
||
ACTUAL
|
||
</td>
|
||
<td class="yangshibold" style="width: 10%;">
|
||
COMMITTED
|
||
</td>
|
||
<td class="yangshibold" style="width: 10%;">
|
||
COST TO COMPLETE
|
||
</td>
|
||
<td colspan="2" class="yangshibold" style="width: 10%;">
|
||
ESTIMATED FINAL COST
|
||
</td>
|
||
<td class="yangshibold" style="width: 10%;">
|
||
VARIANCE
|
||
</td>
|
||
<td style="width: 10%;">
|
||
</td>
|
||
<td style="width: 10%;">
|
||
</td>
|
||
<td style="width: 10%;">
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td style="height: 40px;">
|
||
<f:Label ID="Label9" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label10" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label11" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td class="style1">
|
||
<f:Label ID="Label48" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="2">
|
||
<f:Label ID="Label49" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
<f:Label ID="Label50" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td>
|
||
</td>
|
||
<td>
|
||
</td>
|
||
<td>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="table-c">
|
||
<table style=" width:100%">
|
||
<tr>
|
||
<td class="zhuti2" colspan="10" style=" height:40px;">
|
||
5. REMARKS ABOUT PROJECT DEVELOPMENT
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="style3" colspan="10">
|
||
Engineering
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="10" style="height: 80px;">
|
||
Piping design has been finished 80%
|
||
<f:Label ID="Label51" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="zhuti2" colspan="10">
|
||
Procurement
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="10" style="height: 40px;">
|
||
PR of control valve issued
|
||
<f:Label ID="Label52" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td style="height: 60px;" colspan="10">
|
||
control valve have delivery BYC
|
||
<f:Label ID="Label53" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="zhuti2" colspan="10">
|
||
Construction
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="10" style="height: 80px;">
|
||
TP construction and piping installation have finished during TAR(2012-4-30)
|
||
<f:Label ID="Label54" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="zhuti2" colspan="10">
|
||
Site Quality & HSE
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="10" style="height: 80px;">
|
||
<f:Label ID="Label55" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="zhuti2" colspan="10">
|
||
Areas of Concern
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="10" style="height: 80px;">
|
||
<f:Label ID="Label56" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="10" style="height: 40px;">
|
||
a piece of pipeline(incloding 2pc valves, 4pc flgs and 1m pipe) was been removed
|
||
by plant, then operators are looking for it.
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="table-c">
|
||
<table style=" width:100%">
|
||
<tr>
|
||
<td colspan="3" style="width: 35%;">
|
||
<strong>Project Manager</strong>
|
||
</td>
|
||
<td colspan="7" style="width: 65%; border-left: 1px solid #362b36;">
|
||
<strong>Distribution</strong>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3">
|
||
<f:Label ID="Label58" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
<td colspan="7" rowspan="3" style="border-left: 1px solid #362b36;">
|
||
<f:Label ID="Label60" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="border-left: 1px solid #362b36;">
|
||
<strong>Construction Manager</strong>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3" style="border-left: 1px solid #362b36;">
|
||
<f:Label ID="Label59" runat="server">
|
||
</f:Label>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
<object id="WebBrowser" width="0" height="0" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2">
|
||
</object>
|
||
</form>
|
||
</body>
|
||
</html>
|