1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<script type="text/javascript">
<!-- <![CDATA[
function selectUsers () {
// find id of user selection object
var listid = 0;
for ( i = 0; i < document.forms[0].elements.length; i++ ) {
if ( document.forms[0].elements[i].name == "users[]" )
listid = i;
}
url = "usersel.php?form=searchformentry&listid=" + listid + "&users=";
// add currently selected users
for ( i = 0, j = 0; i < document.forms[0].elements[listid].length; i++ ) {
if ( document.forms[0].elements[listid].options[i].selected ) {
if ( j != 0 )
url += ",";
j++;
url += document.forms[0].elements[listid].options[i].value;
}
}
//alert ( "URL: " + url );
// open window
window.open ( url, "UserSelection",
"width=500,height=500,resizable=yes,scrollbars=yes" );
}
function show(foo,f,section) {
document.getElementById(foo).style.display = "block";
if (f) { setCookie(foo, "o", section); }
}
function hide(foo,f, section) {
if (document.getElementById(foo)) {
document.getElementById(foo).style.display = "none";
if (f) { deleteCookie(foo, section); }
}
}
//]]> -->
</script>
|