<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@page contentType="text/html; charset=UTF-8"%>
<%@page import="com.csc.library.entry.HelpEntry,com.csc.library.system.*"%>
<%@page import="com.csc.library.session.*"%>
<jsp:useBean id="ASR001HELP" class="com.csc.library.system.Task" scope="session" />
<%
	ASR001HELP.setChannel(request, response);
	ASR001HELP.checkProfile();
	DbInquiry di=new com.csc.library.session.InitialInquiry(ASR001HELP.getUProfile()).getDbInquiry();
	String param=request.getParameter("helpParam");
	di.initMyTable(param.substring(0,param.indexOf(".")),"","");
	di.setColumn(param.substring(param.indexOf(".")+1,param.length()));
	di.refresh();
	int count=0;
	
%>
<script>
function goBack(valueList){
	with(window.opener.document.cscform){
		nval.value = valueList;
		//__codeid.value="412";
		//alert(__help.value);
		//__cmd.value="search";
		//window.opener.location.refresh();
	}	
	window.close();
}
</script>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../CSS/TISCO.css" rel="stylesheet" type="text/css">
<script src="JS/SCREEN.js"></script>
<script language="javascript">setLang('<%=screen.getUProfile().get("lang")%>');</script>


</head>

<body leftmargin="0" topmargin="0">
<form name="cscform" method="post" action="#">


<!----------BEGIN CSC INITIAL ZONE ------------------------>

<%=screen.InitialVariable()%>

<!----------END CSC INITIAL ZONE -------------------------->

<input type="hidden" name="__cmd" value="">
<input type="hidden" name="__help" value="">
<input type="hidden" name="__pageCall" value="<%=request.getParameter("__screen")%>">
<input type="hidden" name="__language" value ="<%=screen.getUProfile().get("lang")%>"> 
  <table width="640"height="20" cellpadding="0" cellspacing="0" align="center">
    <tr bgcolor="#3366CC">
      <td  height="20" class="header"><div align="right"><strong> </strong></div></td>
  </tr>
   <tr bgcolor="#3366CC">
      <td  height="20" class="row1">
	  <table cellpadding="0" cellspacing="0">
          <tr> 
            <td colspan="4"  class="blankspace" ></td>
          </tr>
        </table>
	  </td>
  </tr>
</table>
  <div align="center">
  <table border="1" width="500" cellpadding="0" cellspacing ="0">
  

<%

			while(di.next()){%>
		<tr>
		<td><div align="center"><a href="#" onclick ="goBack('<%=di.getString(param.substring(param.indexOf(".")+1,param.length()))%>')"> 
		<%=di.getString(param.substring(param.indexOf(".")+1,param.length()))%></a></div></td>
		</tr>		
		<%
			}
		%>	
		</table></div>
</form>
</body>
</html>