%@ page language="java" isErrorPage="true" contentType="text/html;charset=utf-8"%>
<%
if (exception != null) {
%>
<%
exception.printStackTrace(new java.io.PrintWriter(out)).replaceAll("<", "<").replaceAll(">", ">");
%>
<%
} else if ((Exception) request.getAttribute("javax.servlet.error.exception") != null) {
%>
<%
((Exception) request.getAttribute("javax.servlet.error.exception")).printStackTrace(new java.io.PrintWriter(out)).replaceAll("<", "<").replaceAll(">", ">");
%>
<%
}
%>
<%
int i = uri.indexOf("/mobileUI/");
if(i>0){
String basejs = request.getContextPath() + "/base/mbase.js";
String winreceiverjs = request.getContextPath() + "/mobileUI/system/components/mobile/windowReceiver/windowReceiver.js";
%>