123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- <%@ page language="java" pageEncoding="UTF-8" %>
- <%@ page import="java.io.File" %>
- <%@ page import="org.w3c.dom.Node" %>
- <%@ page import="org.w3c.dom.NodeList" %>
- <%@ page import="kr.comsquare.soonsu.define.AdminMessage" %>
- <%@ page import="kr.comsquare.common.library.XmlLib" %>
- <%@ page import="kr.comsquare.soonsu.service.context.TrustFormServletContextListener" %>
- <% request.setCharacterEncoding("UTF-8"); %>
- <html>
- <head>
- <title>TrustForm Soonsu</title>
- </head>
- <%
- String strLanguage = AdminMessage.LANGUAGE;
- String strFontFamily = "Dotum, arial";
- if ("jp".equals(strLanguage))
- {
- strFontFamily = "MS Gothic, arial";
- }
- else if ("us".equals(strLanguage))
- {
- strFontFamily = "arial";
- }
-
- AdminMessage objAdminMessage = new AdminMessage();
- String strLogin = (String)session.getAttribute("login");
- String strUserHome = System.getProperty("user.home");
- String strAppName = TrustFormServletContextListener.s_strApplicationName.replace("/", "");
- strAppName = strAppName.equals("") ? "ROOT" : strAppName;
- File objAdminFile = new File(strUserHome+File.separator + "tfconfig"+ File.separator+strAppName+".xml");
-
- if (!objAdminFile.exists() || strLogin == null || !strLogin.equals("Success"))
- {
- %>
- <script type="text/javascript">
- alert("<%=objAdminMessage.getMessage("main01")%>");
- location.href = "index.jsp";
- </script>
- <%
- return;
- }
- String strPort = String.valueOf(request.getServerPort());
- strPort = strPort.equals("80") ? "" : ":"+strPort;
- String strCurrentContext = request.getScheme()+"://"+request.getServerName()+strPort+request.getContextPath();
- %>
- <script src="HttpClient.js" type="text/javascript"></script>
- <script type="text/javascript"><!--
- var objHttpClient = new HttpClient();
- var nInsertNum = 0;
- function clickCheck (strType, strPathNum)
- {
- var inputCheckObj = document.getElementById("input"+strType+strPathNum);
- if (inputCheckObj.value == "Y")
- {
- inputCheckObj.value = "N"
- document.getElementById("img"+strType+strPathNum).src = "image/main"+strType+"N.jpg";
- document.getElementById("img"+strType+strPathNum).style.backgroundColor = "#FFFFFF";
- }
- else
- {
- inputCheckObj.value = "Y"
- document.getElementById("img"+strType+strPathNum).src = "image/main"+strType+"Y.jpg";
- document.getElementById("img"+strType+strPathNum).style.backgroundColor = "#000000";
- }
- }
- function openFolderList (strPathType, strPathNum)
- {
- document.getElementById("inputFolderPathType").value = strPathType;
- document.getElementById("inputFolderPathNum").value = strPathNum;
- document.getElementById("inputFolderValue").value = document.getElementById(strPathType+strPathNum).value;
- document.getElementById("formFolderList").submit();
- document.getElementById("modalBackground").style.visibility = "visible";
- document.getElementById("tableFolderList").style.visibility = "visible";
- }
-
- function deployResource ()
- {
- var bIsExistY = false;
- for (var i = 0;i < nInsertNum;i++)
- {
- if (document.getElementById("inputCheck"+i) != null && document.getElementById("inputCheck"+i).value == "Y")
- {
- bIsExistY = true;
- break;
- }
- }
-
- if (!bIsExistY)
- {
- alert("<%=objAdminMessage.getMessage("main02")%>")
- return;
- }
-
- if (confirm("<%=objAdminMessage.getMessage("main06")%>"))
- {
- document.getElementById("modalBackground").style.visibility = "visible";
- document.getElementById("tableDeploy").style.visibility = "visible";
- try
- {
- var strData = makePathData("deploy");
- objHttpClient.send("AdminMain.tfs", strData, true, completeDeploy);
- }
- catch (e)
- {
- document.getElementById("modalBackground").style.visibility = "hidden";
- document.getElementById("tableDeploy").style.visibility = "hidden";
- alert("<%=objAdminMessage.getMessage("admin05")%>");
- }
- }
- }
- function completeDeploy ()
- {
- if (4 == this.readyState)
- {
- if (200 == this.status)
- {
- var strResult = this.responseText;
- try
- {
- document.getElementById("modalBackground").style.visibility = "hidden";
- document.getElementById("tableDeploy").style.visibility = "hidden";
-
- if (strResult == "Success")
- {
- alert("<%=objAdminMessage.getMessage("main07")%>");
- }
- else if (strResult == "Failed")
- {
- if (confirm("<%=objAdminMessage.getMessage("main08")%>"))
- {
- registerLicense();
- }
- }
- else if (strResult == "InitFailure")
- {
- alert("<%=objAdminMessage.getMessage("main01")%>");
- }
- else
- {
- alert("<%=objAdminMessage.getMessage("admin05")%>");
- }
- }
- catch (e)
- {
- document.getElementById("modalBackground").style.visibility = "hidden";
- document.getElementById("tableDeploy").style.visibility = "hidden";
- alert("<%=objAdminMessage.getMessage("admin05")%>");
- }
- }
- else
- {
- throw new Error(this.status);
- }
- }
- }
- function modifyAdminInfo()
- {
- document.getElementById("frameModify").src = "modify.jsp";
- document.getElementById("modalBackground").style.visibility = "visible";
- document.getElementById("tableModify").style.visibility = "visible";
- }
- function registerLicense ()
- {
- document.getElementById("frameRegister").src = "register.jsp";
- document.getElementById("modalBackground").style.visibility = "visible";
- document.getElementById("tableRegister").style.visibility = "visible";
- }
- function savePath ()
- {
- if (confirm("<%=objAdminMessage.getMessage("main04")%>"))
- {
- var strData = makePathData("save");
- var strResult = objHttpClient.send("AdminMain.tfs", strData, false);
-
- if (strResult == "Success")
- {
- alert("<%=objAdminMessage.getMessage("main05")%>");
- }
- else if (strResult == "InitFailure")
- {
- alert("<%=objAdminMessage.getMessage("main01")%>");
- }
- else
- {
- alert("<%=objAdminMessage.getMessage("admin05")%>");
- }
- }
- }
-
- function makePathData (strActionType)
- {
- var strData = encodeURI("strActionType");
- strData += "=";
- strData += encodeURI(strActionType);
- strData += "&";
- strData += encodeURI("nInsertNum");
- strData += "=";
- strData += encodeURI(nInsertNum);
- for (var i = 0; i < nInsertNum; i++)
- {
- if (document.getElementById("inputCheck"+i))
- {
- strData += "&";
- strData += encodeURI("inputCheck"+i);
- strData += "=";
- strData += encodeURI(document.getElementById("inputCheck"+i).value);
- strData += "&";
- strData += encodeURI("inputXrwPath"+i);
- strData += "=";
- strData += encodeURI(document.getElementById("inputXrwPath"+i).value);
- strData += "&";
- strData += encodeURI("inputHtmlPath"+i);
- strData += "=";
- strData += encodeURI(document.getElementById("inputHtmlPath"+i).value);
- strData += "&";
- strData += encodeURI("inputChildren"+i);
- strData += "=";
- strData += encodeURI(document.getElementById("inputChildren"+i).value);
- }
- }
-
- return strData;
- }
-
- function removeRow (strPathNum)
- {
- if (confirm("<%=objAdminMessage.getMessage("main03")%>"))
- {
- var trPath = document.getElementById("trGenerationPath"+strPathNum);
- trPath.parentNode.removeChild(trPath);
- }
- }
- function addRow ()
- {
- var intInsertNum = nInsertNum;
- var tdNewElement = document.createElement("td");
- tdNewElement.style.width = "895px";
- tdNewElement.style.height = "40px";
- tdNewElement.style.borderLeft = "1px solid #D4D4D4";
- tdNewElement.style.borderRight = "1px solid #C2CFDF";
- tdNewElement.innerHTML = "<div style=\"position:relative; width:100%; height:100%; \"><img id=\"imgCheck"+intInsertNum+"\" src=\"image/mainCheckN.jpg\" onclick=\"clickCheck('Check', '"+intInsertNum+"')\" title=\"<%=objAdminMessage.getTip("main06")%>\" alt=\"<%=objAdminMessage.getTip("main06")%>\" style=\"position:absolute; left:14px; top:15px; width:14px; height:14px; border-style:none; background-color:#FFFFFF; cursor:hand; \"/><input id=\"inputCheck"+intInsertNum+"\" type=\"hidden\" value=\"N\"/><img src=\"image/main09.jpg\" onclick=\"removeRow('"+intInsertNum+"')\" title=\"<%=objAdminMessage.getTip("main04")%>\" alt=\"<%=objAdminMessage.getTip("main04")%>\" style=\"position:absolute; left:31px; top:15px; width:14px; height:14px; border-style:none; background-color:#CCCCCC; cursor:hand; \"/><div style=\"position:absolute; left:52px; top:8px; width:452px; height:30px; border:1px solid #D9D9D9; \"><input id=\"inputXrwPath"+intInsertNum+"\" type=\"text\" title=\"<%=objAdminMessage.getTip("main07")%>\" style=\"position:absolute; left:4px; top:7px; width:322px; height:16px; font-family:<%=strFontFamily%>, arial; font-size:9pt; border-width:0px; \"/><img src=\"image/main10.jpg\" onclick=\"openFolderList('inputXrwPath','"+intInsertNum+"');\" title=\"<%=objAdminMessage.getTip("main08")%>\" alt=\"<%=objAdminMessage.getTip("main08")%>\" style=\"position:absolute; left:329px; top:3px; width:24px; height:24px; border-style:none; background-color:#CCCCCC; cursor:hand; \"/><div style=\"position:absolute; left:355px; top:3px; width:92px; height:22px; background-image:url(image/main13.jpg); \"><img id=\"imgChildren"+intInsertNum+"\" src=\"image/mainChildrenN.jpg\" onclick=\"clickCheck('Children', '"+intInsertNum+"')\" title=\"<%=objAdminMessage.getTip("main06")%>\" alt=\"<%=objAdminMessage.getTip("main06")%>\" style=\"position:absolute; left:4px; top:4px; width:14px; height:14px; border-style:none; background-color:#FFFFFF; cursor:hand; \"/><input id=\"inputChildren"+intInsertNum+"\" type=\"hidden\" value=\"N\"/><span style=\"position:absolute; left:22px; top:6px; font-family:<%=strFontFamily%>; font-size:8pt; cursor:default; \"><nobr><%=objAdminMessage.getTip("main11")%></nobr></span></div></div><div style=\"position:absolute; left:517px; top:8px; width:360px; height:30px; border:1px solid #B0C5D6; \"><span id=\"spanHtmlPath"+intInsertNum+"\" style=\"position:absolute; left:4px; top:8px; font-family:<%=strFontFamily%>; font-size:9pt; color:#7F7F7F; cursor:default; \"><%=strCurrentContext%></span><input id=\"inputHtmlPath"+intInsertNum+"\" type=\"text\" value=\"/\" title=\"<%=objAdminMessage.getTip("main07")%>\" style=\"position:absolute; top:7px; height:16px; font-family:<%=strFontFamily%>; font-size:9pt; border-width:0px; \"/><img src=\"image/main10.jpg\" onclick=\"openFolderList('inputHtmlPath','"+intInsertNum+"');\" title=\"<%=objAdminMessage.getTip("main08")%>\" alt=\"<%=objAdminMessage.getTip("main08")%>\" style=\"position:absolute; left:332px; top:3px; width:24px; height:24px; border-style:none; background-color:#CCCCCC; cursor:hand; \"/></div>";
- var trNewElement = document.createElement("tr");
- trNewElement.id = "trGenerationPath"+intInsertNum;
- trNewElement.appendChild(tdNewElement);
- var tbodyNewElement = document.createElement("tbody");
- tbodyNewElement.appendChild(trNewElement);
- document.getElementById("tableGenerationPath").appendChild(tbodyNewElement);
-
- nInsertNum++;
- adjustHtmlPath();
- }
- function adjustHtmlPath ()
- {
- for (var i = 0; i < nInsertNum; i++)
- {
- if (document.getElementById("inputHtmlPath"+i))
- {
- var nSpanWidth = document.getElementById("spanHtmlPath"+i).offsetWidth;
- var inputHtmlPath = document.getElementById("inputHtmlPath"+i);
- inputHtmlPath.style.left = (nSpanWidth+4)+"px";
- inputHtmlPath.style.width = (325-nSpanWidth)+"px";
- }
- }
- }
- --></script>
- <body onload="adjustHtmlPath();" style="margin:0px; background-image:url(image/main02.jpg); background-repeat:repeat-x; ">
- <table cellpadding="0" cellspacing="0" align="center">
- <tr>
- <td>
- <div style="position:relative; width:100%; height:100%; ">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td style="width:320px; height:80px; "><img src="image/main01_<%=strLanguage%>.jpg" style="width:320px; height:80px; border-style:none; "/></td>
- <td style="width:171px; "></td>
- <td style="width:134px; "><img src="image/main14_<%=strLanguage%>.jpg" onclick="registerLicense();" title="<%=objAdminMessage.getTip("main12")%>" alt="<%=objAdminMessage.getTip("main12")%>" style="width:134px; height:16px; border-style:none; background-color:#CCCCCC; cursor:hand; "/></td>
- <td style="width:27px; "></td>
- <td style="width:147px; "><img src="image/main03_<%=strLanguage%>.jpg" onclick="modifyAdminInfo();" title="<%=objAdminMessage.getTip("main01")%>" alt="<%=objAdminMessage.getTip("main01")%>" style="width:147px; height:16px; border-style:none; background-color:#CCCCCC; cursor:hand; "/></td>
- <td style="width:27px; "></td>
- <td style="width:71px; "><img src="image/main04_<%=strLanguage%>.jpg" onclick="location.href='AdminLogout.tfs';" title="<%=objAdminMessage.getTip("main02")%>" alt="<%=objAdminMessage.getTip("main02")%>" style="width:71px; height:16px; border-style:none; background-color:#CCCCCC; cursor:hand; "/></td>
- </tr>
- </table>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td style="width:747px; height:65px; "></td>
- <td style="width:70px; "><img src="image/main05_<%=strLanguage%>.jpg" onclick="addRow();" title="<%=objAdminMessage.getTip("main03")%>" alt="<%=objAdminMessage.getTip("main03")%>" style="width:70px; height:25px; border-style:none; background-color:#CCCCCC; cursor:hand; "/></td>
- <td style="width:10px; "></td>
- <td style="width:70px; "><img src="image/main06_<%=strLanguage%>.jpg" onclick="deployResource();" title="<%=objAdminMessage.getTip("main05")%>" alt="<%=objAdminMessage.getTip("main05")%>" style="width:70px; height:25px; border-style:none; background-color:#CCCCCC; cursor:hand; "/></td>
- </tr>
- <tr>
- <td colspan="4" style="height:78px; "><img src="image/main08.jpg" title="" alt="from Source >> to Target" style="width:897px; height:78px; border-style:none; "/></td>
- </tr>
- </table>
- <table id="tableGenerationPath" cellpadding="0" cellspacing="0">
- <%
- Node xnTfConfig = XmlLib.loadXmlDocument(objAdminFile);
- Node xnGenerationPath = XmlLib.selectSingleNode(xnTfConfig, "generatePath");
- NodeList xlGenerationPath = xnGenerationPath.getChildNodes();
- int nCountPath = 0;
-
- for (int i=0; i<xlGenerationPath.getLength(); i++)
- {
- Node xnGenerationPathChild = xlGenerationPath.item(i);
- if ("record".equals(xnGenerationPathChild.getNodeName()))
- {
- Node xnCheckYN = XmlLib.selectSingleNode(xnGenerationPathChild, "checkYN");
- Node xnXrwPath = XmlLib.selectSingleNode(xnGenerationPathChild, "xrwPath");
- Node xnHtmlPath = XmlLib.selectSingleNode(xnGenerationPathChild, "htmlPath");
- Node xnChildrenYN = XmlLib.selectSingleNode(xnGenerationPathChild, "childrenYN");
- String strCheckColor = XmlLib.getTextValue(xnCheckYN).equals("Y") ? "#000000" : "#FFFFFF";
- String strChildrenColor = XmlLib.getTextValue(xnChildrenYN).equals("Y") ? "#000000" : "#FFFFFF";
- %>
- <tr id="trGenerationPath<%=nCountPath%>">
- <td style="width:895px; height:40px; border-left:1px solid #D4D4D4; border-right:1px solid #C2CFDF; ">
- <div style="position:relative; width:100%; height:100%; ">
- <img id="imgCheck<%=nCountPath%>" src="image/mainCheck<%=XmlLib.getTextValue(xnCheckYN)%>.jpg" onclick="clickCheck('Check', '<%=nCountPath%>')" title="<%=objAdminMessage.getTip("main06")%>" alt="<%=objAdminMessage.getTip("main06")%>" style="position:absolute; left:14px; top:15px; width:14px; height:14px; border-style:none; background-color:<%=strCheckColor%>; cursor:hand; "/><input id="inputCheck<%=nCountPath%>" type="hidden" value="<%=XmlLib.getTextValue(xnCheckYN)%>"/>
- <img src="image/main09.jpg" onclick="removeRow('<%=nCountPath%>')" title="<%=objAdminMessage.getTip("main04")%>" alt="<%=objAdminMessage.getTip("main04")%>" style="position:absolute; left:31px; top:15px; width:14px; height:14px; border-style:none; background-color:#CCCCCC; cursor:hand; "/>
- <div style="position:absolute; left:52px; top:8px; width:452px; height:30px; border:1px solid #D9D9D9; ">
- <input id="inputXrwPath<%=nCountPath%>" type="text" value="<%=XmlLib.getTextValue(xnXrwPath)%>" title="<%=objAdminMessage.getTip("main07")%>" style="position:absolute; left:4px; top:7px; width:322px; height:16px; font-family:<%=strFontFamily%>; font-size:9pt; border-width:0px; "/>
- <img src="image/main10.jpg" onclick="openFolderList('inputXrwPath','<%=nCountPath%>');" title="<%=objAdminMessage.getTip("main08")%>" alt="<%=objAdminMessage.getTip("main08")%>" style="position:absolute; left:329px; top:3px; width:24px; height:24px; border-style:none; background-color:#CCCCCC; cursor:hand; "/>
- <div style="position:absolute; left:355px; top:3px; width:92px; height:22px; background-image:url(image/main13.jpg); ">
- <img id="imgChildren<%=nCountPath%>" src="image/mainChildren<%=XmlLib.getTextValue(xnChildrenYN)%>.jpg" onclick="clickCheck('Children', '<%=nCountPath%>')" title="<%=objAdminMessage.getTip("main06")%>" alt="<%=objAdminMessage.getTip("main06")%>" style="position:absolute; left:4px; top:4px; width:14px; height:14px; border-style:none; background-color:<%=strChildrenColor%>; cursor:hand; "/><input id="inputChildren<%=nCountPath%>" type="hidden" value="<%=XmlLib.getTextValue(xnChildrenYN)%>"/>
- <span style="position:absolute; left:22px; top:6px; font-family:<%=strFontFamily%>; font-size:8pt; cursor:default; "><nobr><%=objAdminMessage.getTip("main11")%></nobr></span>
- </div>
- </div>
- <div style="position:absolute; left:517px; top:8px; width:360px; height:30px; border:1px solid #B0C5D6; ">
- <span id="spanHtmlPath<%=nCountPath%>" style="position:absolute; left:4px; top:8px; font-family:<%=strFontFamily%>; font-size:9pt; color:#7F7F7F; cursor:default; "><%=strCurrentContext%></span>
- <input id="inputHtmlPath<%=nCountPath%>" type="text" value="<%=XmlLib.getTextValue(xnHtmlPath)%>" title="<%=objAdminMessage.getTip("main07")%>" style="position:absolute; top:7px; height:16px; font-family:<%=strFontFamily%>; font-size:9pt; border-width:0px; "/>
- <img src="image/main10.jpg" onclick="openFolderList('inputHtmlPath','<%=nCountPath%>');" title="<%=objAdminMessage.getTip("main08")%>" alt="<%=objAdminMessage.getTip("main08")%>" style="position:absolute; left:332px; top:3px; width:24px; height:24px; border-style:none; background-color:#CCCCCC; cursor:hand; "/>
- </div>
- </div>
- </td>
- </tr>
- <%
- nCountPath++;
- }
- }
- %>
- </table>
- <script type="text/javascript">nInsertNum = <%=nCountPath%>;</script>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td style="width:6px; height:20px; "><img src="image/main11.jpg" style="width:6px; height:20px; border-style:none; "/></td>
- <td style="width:885px; border-bottom:1px solid #D4D4D4"> </td>
- <td style="width:6px; "><img src="image/main12.jpg" style="width:6px; height:20px; border-style:none; "/></td>
- </tr>
- <tr>
- <td colspan="3" style="height:50px; ">
- <form id="formFolderList" method="post" action="folderlist.jsp" target="frameFolderList">
- <input id="inputFolderPathType" name="inputFolderPathType" type="hidden"/>
- <input id="inputFolderPathNum" name="inputFolderPathNum" type="hidden"/>
- <input id="inputFolderValue" name="inputFolderValue" type="hidden"/>
- </form>
- </td>
- </tr>
- <tr>
- <td colspan="3" style="height:42px; text-align:center; ">
- <img src="image/main07_<%=strLanguage%>.jpg" onclick="savePath();" title="<%=objAdminMessage.getTip("main09")%>" alt="<%=objAdminMessage.getTip("main09")%>" style="width:188px; height:42px; border-style:none; background-color:#CCCCCC; cursor:hand; "/>
- </td>
- </tr>
- </table>
- <div id="modalBackground" style="position:absolute; top:0px; left:0px; width:100%; height:100%; background-image:url(image/modalBg.gif); visibility:hidden; ">
- <table id="tableFolderList" cellpadding="0" cellspacing="0" style="position:absolute;top:50%;left:50%;margin:-185px 0 0 -227px;visibility:hidden;">
- <tr>
- <td width="454px" height="74px" colspan="3"><img src="image/folderlist01.png" width="454px" height="74px" border="0"/></td>
- </tr>
- <tr>
- <td width="14px" height="251px"><img src="image/modalLineLeft.png" width="14px" height="251px" border="0"/></td>
- <td width="427px" height="251px" bgcolor="#FFFFFF">
- <iframe id="frameFolderList" name="frameFolderList" frameborder="0" scrolling="no" style="width:427px;height:251px;"></iframe>
- </td>
- <td width="13px" height="251px"><img src="image/modalLineRight.png" width="13px" height="251px" border="0"/></td>
- </tr>
- <tr>
- <td width="454px" height="24px" colspan="3"><img src="image/modalLineBottom.png" width="454px" height="24px" border="0"/></td>
- </tr>
- </table>
- <table id="tableModify" cellpadding="0" cellspacing="0" style="position:absolute;top:50%;left:50%;margin:-185px 0 0 -227px;visibility:hidden;">
- <tr>
- <td width="454px" height="90px" colspan="3"><img src="image/modify01_<%=strLanguage%>.png" width="454px" height="90px" border="0"/></td>
- </tr>
- <tr>
- <td width="14px" height="251px"><img src="image/modalLineLeft.png" width="14px" height="251px" border="0"/></td>
- <td width="427px" height="251px" bgcolor="#FFFFFF">
- <iframe id="frameModify" frameborder="0" scrolling="no" style="width:427px;height:251px;"></iframe>
- </td>
- <td width="13px" height="251px"><img src="image/modalLineRight.png" width="13px" height="251px" border="0"/></td>
- </tr>
- <tr>
- <td width="454px" height="24px" colspan="3"><img src="image/modalLineBottom.png" width="454px" height="24px" border="0"/></td>
- </tr>
- </table>
- <table id="tableRegister" cellpadding="0" cellspacing="0" style="position:absolute;top:50%;left:50%;margin:-145px 0 0 -227px;visibility:hidden;">
- <tr>
- <td width="454px" height="90px" colspan="3"><img src="image/register01_<%=strLanguage%>.png" width="454px" height="90px" border="0"/></td>
- </tr>
- <tr>
- <td width="14px" height="175px"><img src="image/modalLineLeft.png" width="14px" height="175px" border="0"/></td>
- <td width="427px" height="175px" bgcolor="#FFFFFF">
- <iframe id="frameRegister" frameborder="0" scrolling="no" style="width:427px;height:175px;"></iframe>
- </td>
- <td width="13px" height="175px"><img src="image/modalLineRight.png" width="13px" height="175px" border="0"/></td>
- </tr>
- <tr>
- <td width="454px" height="24px" colspan="3"><img src="image/modalLineBottom.png" width="454px" height="24px" border="0"/></td>
- </tr>
- </table>
- <table id="tableDeploy" cellpadding="0" cellspacing="0" style="position:absolute;top:50%;left:50%;margin:-136px 0 0 -148px;visibility:hidden;">
- <tr>
- <td width="297px" height="24px" colspan="3"><img src="image/deploy01.png" width="297px" height="24px" border="0"/></td>
- </tr>
- <tr>
- <td width="14px" height="145px"><img src="image/deploy02.png" width="14px" height="145px" border="0"/></td>
- <td width="270px" height="145px" bgcolor="#FFFFFF" align="center">
- <img src="image/deploying.gif" style="width:125px; height:125px; " title="" alt="<%=objAdminMessage.getTip("main10")%>" />
- </td>
- <td width="13px" height="145px"><img src="image/deploy03.png" width="13px" height="145px" border="0"/></td>
- </tr>
- <tr>
- <td width="297px" height="103px" colspan="3"><img src="image/deploy04_<%=strLanguage%>.png" width="297px" height="103px" border="0"/></td>
- </tr>
- </table>
- </div>
- </div>
- </td>
- </tr>
- </table>
- </body>
- </html>
|