You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.8 KiB
69 lines
1.8 KiB
<!-- $Id: grpowners.htt,v 1.2 2004/03/10 18:26:57 bcarico Exp $ -->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE><%=PHRASE.419%> <%=PHRASE.64%></TITLE>
|
|
<BASEFONT FACE="Arial">
|
|
<%=SYSTEM.INCLUDEJS global.js %>
|
|
<SCRIPT language="JavaScript">
|
|
<!--
|
|
var down, csec, syncform;
|
|
|
|
function wdw_onLoad() {
|
|
syncform = top.findex.document.syncform
|
|
syncform.csec.value = <%=SYSTEM.autologout%>;
|
|
monitor();
|
|
}
|
|
|
|
function monitor() {
|
|
monitorrepeat();
|
|
}
|
|
|
|
function monitorrepeat() {
|
|
csec=syncform.csec.value;
|
|
csec--;
|
|
syncform.csec.value=csec;
|
|
if ((csec > 0)) {
|
|
down=setTimeout("monitorrepeat()",1000);
|
|
}
|
|
}
|
|
|
|
function reset_autotimer() {
|
|
syncform.csec.value=<%=SYSTEM.autologout%>;
|
|
}
|
|
|
|
function select_owner(objForm) {
|
|
var sURL,nidx,sowner;
|
|
reset_autotimer();
|
|
nidx = objForm.grpowner.selectedIndex;
|
|
if (nidx < 1) {
|
|
sURL="<%=PATHS.cgiroot%>/grpadmin.pl?tid=<%=SESSION.tid%>&lang=<%=SESSION.lang%>&idx=0";
|
|
parent.gbindex.document.location=sURL;
|
|
} else {
|
|
sowner=objForm.grpowner.options[nidx].value;
|
|
sURL="<%=PATHS.cgiroot%>/grpadmin.pl?tid=<%=SESSION.tid%>&lang=<%=SESSION.lang%>&idx=3&grpowner="+sowner;
|
|
parent.gbindex.document.location=sURL;
|
|
sURL="<%=PATHS.cgiroot%>/grpadmin.pl?tid=<%=SESSION.tid%>&lang=<%=SESSION.lang%>&idx=0";
|
|
}
|
|
parent.gdetail.document.location=sURL;
|
|
return true;
|
|
}
|
|
window.onload=wdw_onLoad;
|
|
// -->
|
|
</SCRIPT>
|
|
</HEAD>
|
|
|
|
<BODY BACKGROUND="<%=SYSTEM.BACKGROUND%>" BGCOLOR="<%=SYSTEM.BGCOLOR%>"
|
|
TEXT="<%=SYSTEM.TEXT%>" LINK="<%=SYSTEM.LINK%>"
|
|
VLINK="<%=SYSTEM.VLINK%>" ALINK="<%=SYSTEM.ALINK%>">
|
|
<CENTER>
|
|
<FORM Name="form4" METHOD=POST>
|
|
<INPUT NAME="tid" TYPE=HIDDEN VALUE="<%=SESSION.tid%>">
|
|
<FONT COLOR="<%=SYSTEM.HEADERCOLOR%>"><%=PHRASE.227%>
|
|
<SELECT NAME="grpowner" onChange='select_owner(this.form)'>
|
|
<OPTION SELECTED><%=PHRASE.369%>
|
|
<%=CLIENT.grpowners%>
|
|
</SELECT>
|
|
</FORM>
|
|
</CENTER>
|
|
</BODY>
|
|
</HTML>
|
|
|