12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>XP½ÇÇà</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <example>Sample</example>
- </root>
- </instance>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- if(checkOpener()){
- var sysMessageobj = getViewer("sysMessage");
- if(sysMessageobj != null && sysMessageobj.window.javascript.fSetInitPatientInfo != undefined) {
- var param = opener.javascript.getParameter("PatientInfoXP");
- sysMessageobj.window.javascript.fSetInitPatientInfo(param);
- }
-
- }
- ]]>
- </script>
- </model>
- <script type="javascript">
- <![CDATA[
- function fClose() {
- window.close();
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="0" pageheight="0"/>
- </xhtml:html>
|