17 lines
352 B
Plaintext
17 lines
352 B
Plaintext
<%@ page import="it.valueteam.gnpgo.core.util.Resources" %><%
|
|
String urlPCSLogout = Resources.getPCSUrlLogout();
|
|
%>
|
|
<script type="text/javascript" language="javascript">
|
|
<!--
|
|
|
|
function doLogout(){
|
|
window.location.href = '<%=urlPCSLogout%>';
|
|
//window.close();
|
|
}
|
|
|
|
doLogout();
|
|
|
|
-->
|
|
</script>
|
|
|