Jump to content

How do I view source of Javascript popup windows


Go to solution Solved by Valnurat,

Recommended Posts

Well, I think it is javascript.

When I do this in my script:

if _IELinkClickByText($oIE, $searchobj) <> -1 Then
    Local $NewUserButton = _IEGetObjById($oIE, 'coreForm:table1:createUserToolbar:createUserButton')
    _IEAction($NewUserButton, "click")
EndIf

a javascript windows popup. Just like when you have to add code to a post here on Autoit or if you press the "Manage Topic Poll".

On this popup windows I need to have control to a radiobutton and a "next" button.

How do I find these objects on the popup windows?

Thank you.

Yours sincerely

Kenneth.

Link to comment
Share on other sites

Just as you would any other dom object.

Use some dom spy tool to grab the info so you can focus on it.

$oIE = _IECreate("http://www.autoitscript.com/forum/topic/151073-how-do-i-view-source-of-javascript-popup-windows/", 1)
MsgBox(1,1,"open up the 'code' window")
$oInputOnForumCodeHTML = _IEGetObjById($oIE, "cke_78_textarea")
_IEFormElementSetValue($oInputOnForumCodeHTML, "test")
Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

What do you mean by "code" windows? Do you mean "AutoIt v3 Windows Info"? That I have done, but then what?

Not sure what your exampel should do beside open this post in the IE and inform me to open the "code" window.

Sorry for not understand.

Yours sincerely

Kenneth.

Link to comment
Share on other sites

A popup would be a new window (need to manipulate via control*/window* functions).  That's a modal window, or rendered window, meaning it's all in the dom, and can be manipulated just as any other object through _IE* functions...send us the html of the window, and we can give pointers.  Use the download, advised by Shrapnel, then use the 'arrow' tool, and drag onto the input, or button, or whatever you want to manipulate.  Then use that data to find the object, and perform click, text send, whatever.

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

I have downloaded what Mr. Shrapnel adviced me to do.

First I didn't understand what I could do, but now I can. Thanks for your explanation.

It seems I need to get "modalCreateForm:selectType:option:INTERNAL" and I think I figured out how to click on the radiobutton, but I also need to click on th Next button and here it does not work. I think I need the "modalCreateForm:createUserWizard-next"

This is my code:

if _IELinkClickByText($oIE, $searchobj) <> -1 Then
    Local $NewUserButton = _IEGetObjById($oIE, 'coreForm:table1:createUserToolbar:createUserButton')
    _IEAction($NewUserButton, "click")
    $oForm = _IEFormGetObjByName($oIE, "modalCreateForm")
    Local $RadioButton = _IEGetObjById($oForm, 'modalCreateForm:selectType:option:INTERNAL')
    _IEAction($RadioButton, "click")    ; It is checked, but just to be sure
    Local $NextButton = _IEGetObjById($oForm, "modalCreateForm:createUserWizard-next")
    _IEAction($NextButton, "click")
EndIf

As you requested here is the HTML.

<!-- saved from url=(0060)http://seluws0211/views/securitymanagement/users/users.xhtml -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Generated by F12 developer tools. This might not be an accurate representation of the original source file -->
<HTML xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>Syncron Solutions - User</TITLE>
<META content=text/html;charset=UTF-8 http-equiv=content-type>
<META content=IE=7 http-equiv=X-UA-Compatible><LINK rel="shortcut icon" type=image/x-icon href="/faces/javax.faces.resource/favicon.ico?ln=img/unsecured&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/jsf.js?ln=javax.faces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/jquery.js?v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/class-0.0.2.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/utils.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/facesUnsecured_ie.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=com%2fsyncron%2ffaces%2fcss%2funsecured&amp;v=sync4.4.10.0_12.2.4.7"><LINK rel=stylesheet type=text/css href="/faces/rfRes/wfUnsecured_ie.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=css%2funsecured&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/ajaxStatus.js?ln=js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/facesSecured_ie_7.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=com%2fsyncron%2ffaces%2fcss%2fsecured&amp;v=sync4.4.10.0_12.2.4.7"><LINK rel=stylesheet type=text/css href="/faces/rfRes/wfSecured_ie.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=css%2fsecured&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/richfaces.js?v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/richfaces-queue.js?v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/richfaces-base-component.js?v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/status.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popupBox.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/jquery.position.js?v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/richfaces-event.js?v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popup.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/dropdownmenu.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/menuKeyNavigation.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/menu-base.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/menu.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/menugroup.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/menuitem.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/shortcut.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/tooltip.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/actions.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/target.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/panel.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popup.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popupRegister.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/jquery-ui-core.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/jquery-dnd.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/input.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/prompt.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/jquery.maskedinput.js?ln=com/syncron/faces/js/secured/maskedinput&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/togglePanel.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/togglePanelItem.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/combobox.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/datagrid.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/datascroller.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/datascroller.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/checkbox.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/configurableAction.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/pickset.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/dropDownMenu.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popupPanel.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popupPanelBorders.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/popupPanelSizer.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/popupPanel.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/component-control.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/spinner.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/dualList.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/tabPanel.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/tabPanel.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/tab.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/progressBar.js?ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/rfRes/progressBar.ecss?db=eAF7Pd-SAQAF!wHE&amp;ln=org.richfaces&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/loadingProgress.js?ln=js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
<LINK rel=stylesheet type=text/css href="/faces/javax.faces.resource/users.css?ln=views/securitymanagement/users/_css&amp;v=sync4.4.10.0_12.2.4.7">
<SCRIPT type=text/javascript src="/faces/javax.faces.resource/advancedSearch.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/modalPanel.js?ln=com/syncron/faces/js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/export.js?ln=com/syncron/faces/js/secured/components&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>

<SCRIPT type=text/javascript src="/faces/javax.faces.resource/autoDetectWidth.js?ln=js/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SCRIPT>
</HEAD>
<BODY><SPAN id=_ajaxStatusEventConnector jQuery15109130434855076535="48"></SPAN><SPAN id=j_idt18><SPAN style="DISPLAY: none" class=rf-st-start></SPAN><SPAN class=rf-st-stop></SPAN>
<SCRIPT style="DISPLAY: none" type=text/javascript>new RichFaces.ui.Status("j_idt18",{"onstop":function(event){SyncAjaxStatus.fireStopAjax()},"onstart":function(event){SyncAjaxStatus.fireStartAjax()}} )</SCRIPT>
</SPAN><SPAN style="DISPLAY: none" id=loadingProgress timeout="null" jQuery15109130434855076535="51"></SPAN>
<DIV style="DISPLAY: none" id=tohide class=loading><IMG id=loadingProgressImage class=loading-img src="/faces/javax.faces.resource/websedit-ag-bar2.gif?ln=img/unsecured&amp;v=sync4.4.10.0_12.2.4.7"> 
<DIV class=loading-text>Loading ...</DIV></DIV>
<SCRIPT type=text/javascript>
        observeAjaxCallsForLoadingProgress (1000);
    </SCRIPT>

<DIV id=defaultPopupBox_internal></DIV>
<DIV style="MIN-WIDTH: 73.11em; WIDTH: 974px" id=custom-doc>
<DIV id=header>
<FORM id=headerForm method=post name=headerForm action=/views/securitymanagement/users/users.xhtml><INPUT accessKey="" tabIndex=-1 name=headerForm value=headerForm type=hidden prevTabIndex="null" prevAccessKey> 
<DIV id=topBannerSection>
<DIV class=topLogo></DIV>
<DIV class=topLogo><IMG id=headerForm:j_idt26 src="/faces/javax.faces.resource/transparent.gif?ln=img&amp;v=sync4.4.10.0_12.2.4.7"></DIV><A accessKey="" tabIndex=-1 onclick="mojarra.jsfcljs(document.getElementById('headerForm'),{'headerForm:j_idt28':'headerForm:j_idt28'},'');return false" href="#" prevTabIndex="null" prevAccessKey><IMG id=headerForm:j_idt29 src="/faces/javax.faces.resource/syncron_logo_small.gif?ln=img&amp;v=sync4.4.10.0_12.2.4.7"></A> </DIV>
<DIV id=yui-main>
<DIV id=dropDownMenuSection class=yui-b>
<DIV id=topMenu class=yui-g>
<DIV class="first menuLeft"><SPAN id=headerForm:j_idt31>
<DIV id=headerForm:menuResources class="rf-ddm-lbl rf-ddm-unsel pd_menuheader " jQuery15109130434855076535="3">
<DIV id=headerForm:menuResources_label class=rf-ddm-lbl-dec jQuery15109130434855076535="5">Resources</DIV>
<DIV class=rf-ddm-pos>
<DIV accessKey="" style="MIN-WIDTH: 250px; DISPLAY: none" id=headerForm:menuResources_list class=rf-ddm-lst tabIndex=-1 jQuery15109130434855076535="4" prevTabIndex="-1" prevAccessKey>
<DIV class=rf-ddm-lst-bg>
<DIV id=headerForm:menuCustomerPriceList class="rf-ddm-itm rf-ddm-itm-unsel pd_item" onclick="window.location.href = '/views/One4AL/customerPriceList/customerPriceList.xhtml'" jQuery15109130434855076535="2"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Customer Price List </SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuCustomerPriceList",{"mode":"client"} );</SCRIPT>
</DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>new RichFaces.ui.Menu("headerForm:menuResources").initiateGroups();</SCRIPT>
</DIV>
<DIV id=headerForm:menuAdministration class="rf-ddm-lbl rf-ddm-unsel pd_menuheader " jQuery15109130434855076535="8">
<DIV id=headerForm:menuAdministration_label class=rf-ddm-lbl-dec jQuery15109130434855076535="12">Administration</DIV>
<DIV class=rf-ddm-pos>
<DIV accessKey="" style="MIN-WIDTH: 250px; DISPLAY: none" id=headerForm:menuAdministration_list class=rf-ddm-lst tabIndex=-1 jQuery15109130434855076535="11" prevTabIndex="-1" prevAccessKey>
<DIV class=rf-ddm-lst-bg>
<DIV id=headerForm:menuMonitor class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader" jQuery15109130434855076535="9"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Monitor</SPAN>
<DIV class=rf-ddm-nd>
<DIV accessKey="" style="MIN-WIDTH: 250px; DISPLAY: none" id=headerForm:menuMonitor_list class="rf-ddm-lst rf-ddm-sublst" tabIndex=-1 jQuery15109130434855076535="13" prevTabIndex="-1" prevAccessKey>
<DIV class=rf-ddm-lst-bg>
<DIV id=headerForm:menuActiveSessions class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/securitymanagement/activesessions/activesessions.xhtml'" jQuery15109130434855076535="6"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Active web sessions</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuActiveSessions",{"mode":"client"} );</SCRIPT>
</DIV></DIV></DIV></DIV></DIV>
<DIV id=headerForm:menuLogs class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader" jQuery15109130434855076535="10"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Logs</SPAN>
<DIV class=rf-ddm-nd>
<DIV accessKey="" style="MIN-WIDTH: 250px; DISPLAY: none" id=headerForm:menuLogs_list class="rf-ddm-lst rf-ddm-sublst" tabIndex=-1 jQuery15109130434855076535="14" prevTabIndex="-1" prevAccessKey>
<DIV class=rf-ddm-lst-bg>
<DIV id=headerForm:menuLoginAttempts class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/securitymanagement/loginattempts/loginattempts.xhtml'" jQuery15109130434855076535="7"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">User login</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuLoginAttempts",{"mode":"client"} );</SCRIPT>
</DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>new RichFaces.ui.Menu("headerForm:menuAdministration").initiateGroups([{"id":"headerForm:menuMonitor"} ,{"id":"headerForm:menuLogs"} ] );</SCRIPT>
</DIV>
<DIV id=headerForm:menuConfiguration class="rf-ddm-lbl rf-ddm-unsel pd_menuheader " jQuery15109130434855076535="21">
<DIV id=headerForm:menuConfiguration_label class=rf-ddm-lbl-dec jQuery15109130434855076535="24">Configuration</DIV>
<DIV class=rf-ddm-pos>
<DIV accessKey="" style="MIN-WIDTH: 250px; DISPLAY: none" id=headerForm:menuConfiguration_list class=rf-ddm-lst tabIndex=-1 jQuery15109130434855076535="23" prevTabIndex="-1" prevAccessKey>
<DIV class=rf-ddm-lst-bg>
<DIV id=headerForm:menuSecurity class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader" jQuery15109130434855076535="22"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Security</SPAN>
<DIV class=rf-ddm-nd>
<DIV accessKey="" style="MIN-WIDTH: 250px; DISPLAY: none" id=headerForm:menuSecurity_list class="rf-ddm-lst rf-ddm-sublst" tabIndex=-1 jQuery15109130434855076535="25" prevTabIndex="-1" prevAccessKey>
<DIV class=rf-ddm-lst-bg>
<DIV id=headerForm:menuUsers class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/securitymanagement/users/users.xhtml'" jQuery15109130434855076535="15"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">User</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuUsers",{"mode":"client"} );</SCRIPT>
</DIV>
<DIV id=headerForm:menuRoles class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/securitymanagement/roles/roles.xhtml'" jQuery15109130434855076535="16"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Role</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuRoles",{"mode":"client"} );</SCRIPT>
</DIV>
<DIV id=headerForm:menuPermissions class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/securitymanagement/permissions/permissions.xhtml'" jQuery15109130434855076535="17"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Permission</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuPermissions",{"mode":"client"} );</SCRIPT>
</DIV>
<DIV id=headerForm:menuWebUser class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/xslt/webuser.xhtml'" jQuery15109130434855076535="18"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Web User</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuWebUser",{"mode":"client"} );</SCRIPT>
</DIV>
<DIV id=headerForm:menuWebUserGroup class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/xslt/webusergroup.xhtml'" jQuery15109130434855076535="19"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Web User Group</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuWebUserGroup",{"mode":"client"} );</SCRIPT>
</DIV>
<DIV id=headerForm:menuWebUserStructure class="rf-ddm-itm rf-ddm-itm-unsel pd_menuheader pd_item" onclick="window.location.href = '/views/xslt/webstructure.xhtml'" jQuery15109130434855076535="20"><SPAN class="rf-ddm-itm-ic ">
<DIV class=rf-ddm-emptyIcon></DIV></SPAN><SPAN class="rf-ddm-itm-lbl ">Web Structure</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.MenuItem("headerForm:menuWebUserStructure",{"mode":"client"} );</SCRIPT>
</DIV></DIV></DIV></DIV></DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>new RichFaces.ui.Menu("headerForm:menuConfiguration").initiateGroups([{"id":"headerForm:menuSecurity"} ] );</SCRIPT>
</DIV></SPAN></DIV>
<DIV id=userDetails><SPAN id=headerForm:my_notification_panel class=btn-group><SPAN style="MARGIN-RIGHT: 0px" id=headerForm:my_notificationspan class="btn-wrapper btn-link "><A accessKey="" id=headerForm:my_notification onmouseup="this.blur(); " class="btn btn-link   hd_notifications" tabIndex=-1 onclick='RichFaces.ajax("headerForm:my_notification",event,{"parameters":{"syncRender":""} ,"incId":"1"} );return false;' href="#" name=headerForm:my_notification prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/notifications.png?ln=img&amp;v=sync4.4.10.0_12.2.4.7"><SPAN>Notifications</SPAN></A></SPAN></SPAN><SPAN id=headerForm:homespan class="btn-wrapper btn-link "><A accessKey="" id=headerForm:home onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("headerForm:home",event,{"parameters":{"syncRender":""} ,"incId":"1"} );return false;' href="#" name=headerForm:home prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/house_go.png?ln=img&amp;v=sync4.4.10.0_12.2.4.7"><SPAN>Home</SPAN></A></SPAN><SPAN id=headerForm:profilespan class="btn-wrapper btn-link "><A accessKey="" id=headerForm:profile onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("headerForm:profile",event,{"parameters":{"syncRender":""} ,"incId":"1"} );return false;' href="#" name=headerForm:profile prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/user_edit.png?ln=img&amp;v=sync4.4.10.0_12.2.4.7"><SPAN>DKSOKVK</SPAN></A></SPAN><SPAN id=headerForm:logoutspan class="btn-wrapper btn-link "><A accessKey="" id=headerForm:logout onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("headerForm:logout",event,{"parameters":{"syncRender":""} ,"incId":"1"} );return false;' href="#" name=headerForm:logout prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/door_out.png?ln=img&amp;v=sync4.4.10.0_12.2.4.7"><SPAN>Log out</SPAN></A></SPAN> </DIV></DIV></DIV></DIV><INPUT accessKey="" id=javax.faces.ViewState tabIndex=-1 name=javax.faces.ViewState value=8784530674440485343:356870173144626688 type=hidden autocomplete="off" prevTabIndex="null" prevAccessKey> </FORM></DIV>
<DIV id=bd>
<DIV id=yui-main>
<DIV class=yui-b>
<FORM id=coreForm method=post name=coreForm action=/views/securitymanagement/users/users.xhtml><INPUT accessKey="" tabIndex=-1 name=coreForm value=coreForm type=hidden prevTabIndex="null" prevAccessKey> 
<DIV id=viewContent>
<DIV id=coreForm:j_idt36 class="rf-p ">
<DIV id=coreForm:j_idt36_header class="rf-p-hdr viewHeader"><SPAN id=coreForm:viewHeader>
<TABLE width="100%">
<TBODY>
<TR>
<TD class="view_title align_left"><SPAN id=coreForm:j_idt38 class=viewHeaderTitle>User </SPAN></TD>
<TD class="bread_crumb align_right"><SPAN id=coreForm:breadCrumbs:0:actionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:breadCrumbs:0:action onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:breadCrumbs:0:action",event,{"parameters":{"syncRender":""} ,"incId":"1"} );return false;' href="#" name=coreForm:breadCrumbs:0:action prevTabIndex="null" prevAccessKey><SPAN>User</SPAN></A></SPAN></TD>
<TD class=link_to_this_page><SPAN id=coreForm:linkToThisPageBox><SPAN id=coreForm:linkToThisPagespan class="btn-wrapper btn-link btn-icon" data-sync-tooltip='{"text":["Link to this page"]}'><A accessKey="" id=coreForm:linkToThisPage onmouseup="this.blur(); " class="btn btn-link  btn-icon linkToThisPageAnchor" tabIndex=-1 onclick="return false;" href="#" name=coreForm:linkToThisPage opensPopup="true" jQuery15109130434855076535="49" prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/link_to_this_page.png?ln=com/syncron/faces/images/icons&amp;v=sync4.4.10.0_12.2.4.7"></A></SPAN><css3-container style="Z-INDEX: 100; POSITION: absolute; DISPLAY: none; DIRECTION: ltr; TOP: -2px; LEFT: -2px"><outset-box-shadow style="POSITION: absolute; TOP: 0px; LEFT: 0px"><group1><?xml:namespace prefix = css3vml ns = "urn:schemas-microsoft-com:vml" /><css3vml:shape style="CLIP: rect(7px 7px 14px 0px); POSITION: absolute; WIDTH: 0px; HEIGHT: 0px; BEHAVIOR: url(#default#VML); TOP: 3px; LEFT: -3px" coordsize = "0,0" coordorigin = "1,1" filled = "t" fillcolor = "#444" stroked = "f" path = " m-14,0 qy0,-14 l0,-14 qx14,0 l14,0 qy0,14 l0,14 qx-14,0 x e"><css3vml:fill></css3vml:fill><css3vml:fill></css3vml:fill></css3vml:shape><css3vml:shape style="CLIP: rect(7px 14px 14px 7px); POSITION: absolute; WIDTH: 0px; HEIGHT: 0px; BEHAVIOR: url(#default#VML); TOP: 3px; LEFT: -3px" coordsize = "0,0" coordorigin = "1,1" filled = "t" fillcolor = "#444" stroked = "f" path = " m-14,0 qy0,-14 l0,-14 qx14,0 l14,0 qy0,14 l0,14 qx-14,0 x e"><css3vml:fill></css3vml:fill><css3vml:fill></css3vml:fill></css3vml:shape><css3vml:shape style="CLIP: rect(0px 14px 7px 7px); POSITION: absolute; WIDTH: 0px; HEIGHT: 0px; BEHAVIOR: url(#default#VML); TOP: 3px; LEFT: -3px" coordsize = "0,0" coordorigin = "1,1" filled = "t" fillcolor = "#444" stroked = "f" path = " m-14,0 qy0,-14 l0,-14 qx14,0 l14,0 qy0,14 l0,14 qx-14,0 x e"><css3vml:fill></css3vml:fill><css3vml:fill></css3vml:fill></css3vml:shape><css3vml:shape style="CLIP: rect(0px 7px 7px 0px); POSITION: absolute; WIDTH: 0px; HEIGHT: 0px; BEHAVIOR: url(#default#VML); TOP: 3px; LEFT: -3px" coordsize = "0,0" coordorigin = "1,1" filled = "t" fillcolor = "#444" stroked = "f" path = " m-14,0 qy0,-14 l0,-14 qx14,0 l14,0 qy0,14 l0,14 qx-14,0 x e"><css3vml:fill></css3vml:fill><css3vml:fill></css3vml:fill></css3vml:shape></group1></outset-box-shadow></css3-container>
<DIV accessKey="" style="POSITION: absolute; WIDTH: 300px; DISPLAY: none" id=coreForm:j_idt43 class="popup ui-draggable" tabIndex=-1 _pieId="_15" explicitClose="true" implicityClose="undefined" jQuery15109130434855076535="26" prevTabIndex="-1" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[
shortcut.add("ESC", function(event){ SyncUtils.fireEvent('coreForm:j_idt43_close_icon', 'click')}, {'type':'keydown','propagate':false,'target':document.getElementById("coreForm:j_idt43")})
//]]>
</SCRIPT>
<css3-container style="Z-INDEX: 0; POSITION: absolute; DIRECTION: ltr; TOP: 0px; LEFT: 0px"></css3-container>
<DIV class=popup_header _pieId="_19"><SPAN id=coreForm:j_idt43_close_iconspan class="btn-wrapper btn-link btn-icon" data-sync-tooltip='{"text":["close"]}'><A accessKey="" id=coreForm:j_idt43_close_icon onmouseup="this.blur(); " class="btn btn-link  btn-icon close_icon" tabIndex=-1 onclick="var popupElem = $d('coreForm:j_idt43'); if (popupElem &amp;&amp; popupElem.popup) { popupElem.popup.closeDown(); };return false;" href="#" name=coreForm:j_idt43_close_icon prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/close_window.png?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></A></SPAN>
<DIV id=coreForm:j_idt43-dragHandle class=popup_handle>Link to this page</DIV></DIV><css3-container style="Z-INDEX: 0; POSITION: absolute; DIRECTION: ltr; TOP: 0px; LEFT: 0px"></css3-container>
<DIV class=popup_content _pieId="_23">
<DIV style="TEXT-ALIGN: left" class=inputsGridLayout>
<P style="MARGIN: 0px">Paste the following link into email or IM: </P><INPUT accessKey="" style="BORDER-BOTTOM: black 1px solid; BORDER-LEFT: black 1px solid; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: white; PADDING-LEFT: 2px; WIDTH: 100%; PADDING-RIGHT: 2px; WORD-WRAP: normal; WHITE-SPACE: pre; OVERFLOW: hidden; BORDER-TOP: black 1px solid; BORDER-RIGHT: black 1px solid; PADDING-TOP: 2px; resize: none" id=coreForm:linkToThisPageContent disabled tabIndex=-1 name=coreForm:linkToThisPageContent value=http://seluws0211/views/securitymanagement/users/users.xhtml prevTabIndex="null" prevAccessKey> </DIV></DIV></DIV></SPAN></TD></TR></TBODY></TABLE></SPAN></DIV>
<DIV id=coreForm:j_idt36_body class="rf-p-b viewContent">
<DIV style="WIDTH: 100%; MARGIN-BOTTOM: 1px; HEIGHT: 0px" id=coreForm:j_idt46></DIV><SPAN id=viewContentContainer>
<DIV id=coreForm:filter:filter-label class="synclabelpanel labelPanelForFilteringPane"><SPAN id=coreForm:filter:filter-label-output class=synclabelpaneltextstyle><IMG style="BORDER-RIGHT-WIDTH: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" id=coreForm:filter:filter-label-output-s1 src="/faces/javax.faces.resource/spacer.gif?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7" width=5 height=1><SPAN id=coreForm:filter:filter-label-output-text>Filtering pane</SPAN><IMG style="BORDER-RIGHT-WIDTH: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" id=coreForm:filter:filter-label-output-s2 src="/faces/javax.faces.resource/spacer.gif?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7" width=5 height=1></SPAN>
<DIV class=synclabelpanelinner>
<DIV id=coreForm:filter class=filteringPane_div jQuery15109130434855076535="27">
<DIV class=liq-out-div>
<DIV class=liq-fl-div>
<DIV style="PADDING-RIGHT: 87px" class=liq-div>
<TABLE id=coreForm:filter:UFilteringGrid class="tableLayout inputsGridLayout ">
<TBODY>
<TR>
<TD class="width-8 tableLayoutLabel">User id: </TD>
<TD class="width-24 tableLayout6"><SPAN id=coreForm:filter:login-outer class="input framed inline input-t-text" data-sync-autofocus="true"><SPAN class=inputTagWrapper><INPUT accessKey="" onkeydown="if ((event.which) === Event.KEY_RETURN) { this.blur(); }" id=coreForm:filter:login onchange='RichFaces.ajax(this,event,{"parameters":{"javax.faces.behavior.event":"change"} ,"sourceId":"coreForm:filter:login"} )' tabIndex=-1 name=coreForm:filter:login maxLength=256 prevTabIndex="null" prevAccessKey></SPAN>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD class="width-8 tableLayoutLabel">First name: </TD>
<TD class="width-24 tableLayout6"><SPAN id=coreForm:filter:firstName-outer class="input framed inline input-t-text"><SPAN class=inputTagWrapper><INPUT accessKey="" onkeydown="if ((event.which) === Event.KEY_RETURN) { this.blur(); }" id=coreForm:filter:firstName tabIndex=-1 name=coreForm:filter:firstName maxLength=256 prevTabIndex="null" prevAccessKey></SPAN>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD class="width-8 tableLayoutLabel">Last name: </TD>
<TD class="width-24 tableLayout6"><SPAN id=coreForm:filter:lastName-outer class="input framed inline input-t-text"><SPAN class=inputTagWrapper><INPUT accessKey="" onkeydown="if ((event.which) === Event.KEY_RETURN) { this.blur(); }" id=coreForm:filter:lastName tabIndex=-1 name=coreForm:filter:lastName maxLength=256 prevTabIndex="null" prevAccessKey></SPAN>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD></TR></TBODY></TABLE>
<DIV id=coreForm:filter:j_idt77 class="rf-tgp advancedSearchPanel"><INPUT accessKey="" id=coreForm:filter:j_idt77-value tabIndex=-1 name=coreForm:filter:j_idt77-value value=closed type=hidden prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>new RichFaces.ui.TogglePanel("coreForm:filter:j_idt77",{"ajax":{"incId":"1"} ,"activeItem":"closed","cycledSwitching":false} )</SCRIPT>

<DIV id=coreForm:filter:j_idt78 class=rf-tgp-itm><SPAN id=coreForm:filter:j_idt79 class=advanced onclick="jsf.util.chain(this,event,&quot;switchSearchButtons('coreForm:filter:search','coreForm:filter:advSearch',true,null)&quot;,&quot;RichFaces.$('coreForm:filter:j_idt77').switchToItem('opened'); return false;&quot;)"><IMG style="BORDER-RIGHT-WIDTH: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" id=coreForm:filter:pic1 src="/faces/javax.faces.resource/expand_show.png?ln=com/syncron/faces/images/icons&amp;v=sync4.4.10.0_12.2.4.7"> Advanced search</SPAN>
<SCRIPT type=text/javascript>new RichFaces.ui.TogglePanelItem("coreForm:filter:j_idt78",{"index":0,"togglePanelId":"coreForm:filter:j_idt77","switchMode":"ajax","name":"closed"} )</SCRIPT>
</DIV>
<DIV style="DISPLAY: none" id=coreForm:filter:j_idt81>
<SCRIPT type=text/javascript>new RichFaces.ui.TogglePanelItem("coreForm:filter:j_idt81",{"index":1,"togglePanelId":"coreForm:filter:j_idt77","switchMode":"ajax","name":"opened"} )</SCRIPT>
</DIV></DIV></DIV></DIV>
<DIV style="WIDTH: 87px; MARGIN-LEFT: -87px" class=liq-fr-div><SPAN id=coreForm:filter:toHide class="filteringPaneActions filteringPaneActions_span">
<TABLE>
<TBODY>
<TR>
<TD><SPAN style="DISPLAY: none" id=coreForm:filter:advSearchspan class="btn-wrapper  "><A accessKey="" id=coreForm:filter:advSearch onmouseup="this.blur(); " class="btn   " tabIndex=-1 onclick='RichFaces.ajax("coreForm:filter:advSearch",event,{"incId":"1"} );return false;' href="#" name=coreForm:filter:advSearch prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/search.png?ln=com/syncron/faces/images/icons&amp;v=sync4.4.10.0_12.2.4.7"><SPAN>Search</SPAN>
<SCRIPT type=text/javascript>//<![CDATA[
shortcut.add("Enter", function (evt) { if ($d('coreForm:filter:advSearch').style.display == 'none') return false; RichFaces.ajax("coreForm:filter:advSearch",evt,{"incId":"1"} )}, {'type':'keydown','propagate':false,'target':document.getElementById("coreForm:filter"),'disable_in_textarea':true})
//]]>
</SCRIPT>
</A></SPAN><SPAN id=coreForm:filter:searchspan class="btn-wrapper  "><A accessKey="" id=coreForm:filter:search onmouseup="this.blur(); " class="btn   " tabIndex=-1 onclick='RichFaces.ajax("coreForm:filter:search",event,{"incId":"1"} );return false;' href="#" name=coreForm:filter:search prevTabIndex="null" prevAccessKey><IMG alt="" src="/faces/javax.faces.resource/search.png?ln=com/syncron/faces/images/icons&amp;v=sync4.4.10.0_12.2.4.7"><SPAN>Search</SPAN>
<SCRIPT type=text/javascript>//<![CDATA[
shortcut.add("Enter", function (evt) { if ($d('coreForm:filter:search').style.display == 'none') return false; RichFaces.ajax("coreForm:filter:search",evt,{"incId":"1"} )}, {'type':'keydown','propagate':false,'target':document.getElementById("coreForm:filter"),'disable_in_textarea':true})
//]]>
</SCRIPT>
</A></SPAN></TD></TR></TBODY></TABLE></SPAN></DIV>
<DIV style="CLEAR: both"></DIV></DIV></DIV></DIV></DIV><SPAN id=coreForm:table1span class="datagridWithToolbar datagridVisible "><SPAN id=coreForm:table1:createUserToolbarspan>
<DIV id=coreForm:table1:createUserToolbar class="toolbar toolbar-layout-grid">
<DIV style="FLOAT: right">
<DIV class="toolbar-grp primary"><SPAN class=primary_button><SPAN id=coreForm:table1:createUserToolbar:createUserButtonspan class="btn-wrapper  "><A accessKey="" id=coreForm:table1:createUserToolbar:createUserButton onmouseup="this.blur(); " class="btn   " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:createUserToolbar:createUserButton",event,{"parameters":{"syncRender":["modalCreate\u002DHeader","modalCreate\u002DContent"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:createUserToolbar:createUserButton prevTabIndex="null" prevAccessKey><SPAN>New</SPAN></A></SPAN></SPAN><SPAN class=primary_button><SPAN id=coreForm:table1:createUserToolbar:exportUsersActionspan class="btn-wrapper  "><A accessKey="" id=coreForm:table1:createUserToolbar:exportUsersAction onmouseup="this.blur(); " class="btn   " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:createUserToolbar:exportUsersAction",event,{"parameters":{"syncRender":["exportUsers\u002DHeader","exportUsers\u002DContent"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:createUserToolbar:exportUsersAction prevTabIndex="null" prevAccessKey><SPAN>Export</SPAN></A></SPAN></SPAN></DIV>
<DIV class="toolbar-grp tertiary"><SPAN class=tertiary_button><SPAN id=coreForm:table1:createUserToolbar:table1-colsConfigCA class="configurableAction grid-cols-visibility"><SPAN id=coreForm:table1:createUserToolbar:table1-colsConfigCA-openingButtonspan class="btn-wrapper  "><A accessKey="" id=coreForm:table1:createUserToolbar:table1-colsConfigCA-openingButton onmouseup="this.blur(); " class="btn   " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:createUserToolbar:table1\u002DcolsConfigCA\u002DopeningButton",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:createUserToolbar:table1-colsConfigCA-openingButton prevTabIndex="null" prevAccessKey><SPAN>Columns â–¼</SPAN></A></SPAN></SPAN></SPAN></DIV></DIV>
<DIV class="toolbar-grp secondary"><SPAN class=secondary_button><SPAN id=coreForm:table1:createUserToolbar:deleteUserActionspan class="btn-wrapper  "><A accessKey="" id=coreForm:table1:createUserToolbar:deleteUserAction class="btn  disabled " tabIndex=-1 href="#" name=coreForm:table1:createUserToolbar:deleteUserAction prevTabIndex="-1" prevAccessKey><SPAN>Delete</SPAN></A></SPAN></SPAN></DIV><SPAN class=clearfix></SPAN></DIV></SPAN>
<DIV style="MIN-HEIGHT: 200px" id=coreForm:table1-table-div class=datagrid-div>
<DIV style="PADDING-BOTTOM: 0px" class=datagrid-div-inner>
<TABLE style="WIDTH: 100%" id=coreForm:table1 class="rf-dt inputsGridLayout datagrid">
<COLGROUP span=8>
<COL>
<COL width="15%">
<COL width="19%">
<COL width="19%">
<COL width="19%">
<COL width="9%">
<COL width="9%">
<COL width="10%"></COLGROUP>
<THEAD id=coreForm:table1:th class=rf-dt-thd>
<TR id=coreForm:table1:ch class=rf-dt-shdr>
<TH id=coreForm:table1:selectColumn class="rf-dt-shdr-c selectiveColumn " scope=col><SPAN id=coreForm:table1:selectVisibleBlocker><SPAN id=coreForm:table1:selectVisible-outer class="input input-t-checkbox inline"><INPUT accessKey="" id=coreForm:table1:selectVisible onchange='RichFaces.ajax("coreForm:table1:selectVisible",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1","coreForm:table1:select":"on"} ,"sourceId":"coreForm:table1:selectVisible"} )' tabIndex=-1 name=coreForm:table1:selectVisible value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></SPAN></TH>
<TH id=coreForm:table1:idColumn class="rf-dt-shdr-c  align_left" scope=col><SPAN id=coreForm:table1:idColumn-sortActionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:idColumn-sortAction onmouseup="this.blur(); " class="btn btn-link   cl-sort-lbl" tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:idColumn\u002DsortAction",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:idColumn-sortAction prevTabIndex="null" prevAccessKey><SPAN>User id</SPAN></A></SPAN><IMG id=coreForm:table1:j_id9 class=cl-sort-img src="/faces/javax.faces.resource/grid_column_sort_asc.png?ln=com/syncron/faces/images/icons&amp;v=sync4.4.10.0_12.2.4.7"></TH>
<TH id=coreForm:table1:j_idt100 class="rf-dt-shdr-c  align_left" scope=col><SPAN id=coreForm:table1:j_idt100-sortActionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:j_idt100-sortAction onmouseup="this.blur(); " class="btn btn-link   cl-sort-lbl" tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:j_idt100\u002DsortAction",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:j_idt100-sortAction prevTabIndex="null" prevAccessKey><SPAN>Name</SPAN></A></SPAN></TH>
<TH id=coreForm:table1:j_idt102 class="rf-dt-shdr-c  align_left" scope=col><SPAN id=coreForm:table1:j_idt102-sortActionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:j_idt102-sortAction onmouseup="this.blur(); " class="btn btn-link   cl-sort-lbl" tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:j_idt102\u002DsortAction",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:j_idt102-sortAction prevTabIndex="null" prevAccessKey><SPAN>Last login</SPAN></A></SPAN></TH>
<TH id=coreForm:table1:j_idt103 class="rf-dt-shdr-c  align_left" scope=col><SPAN id=coreForm:table1:j_idt103-sortActionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:j_idt103-sortAction onmouseup="this.blur(); " class="btn btn-link   cl-sort-lbl" tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:j_idt103\u002DsortAction",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:j_idt103-sortAction prevTabIndex="null" prevAccessKey><SPAN>Last failed login attempt</SPAN></A></SPAN></TH>
<TH id=coreForm:table1:j_idt104 class="rf-dt-shdr-c  align_left" scope=col>System </TH>
<TH id=coreForm:table1:j_idt106 class="rf-dt-shdr-c  align_left" scope=col><SPAN id=coreForm:table1:j_idt106-sortActionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:j_idt106-sortAction onmouseup="this.blur(); " class="btn btn-link   cl-sort-lbl" tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:j_idt106\u002DsortAction",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:j_idt106-sortAction prevTabIndex="null" prevAccessKey><SPAN>Active</SPAN></A></SPAN></TH>
<TH id=coreForm:table1:j_idt109 class="rf-dt-shdr-c  align_left" scope=col><SPAN id=coreForm:table1:j_idt109-sortActionspan class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:j_idt109-sortAction onmouseup="this.blur(); " class="btn btn-link   cl-sort-lbl" tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:j_idt109\u002DsortAction",event,{"incId":"1"} );return false;' href="#" name=coreForm:table1:j_idt109-sortAction prevTabIndex="null" prevAccessKey><SPAN>Locked</SPAN></A></SPAN></TH></TR></THEAD>
<TBODY id=coreForm:table1:tb class=rf-dt-b>
<TR id=coreForm:table1:0:row class="rf-dt-r rf-dt-fst-r even">
<TD id=coreForm:table1:0:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:0:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:0:select onchange='RichFaces.ajax("coreForm:table1:0:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:0:select"} )' class=selection tabIndex=-1 name=coreForm:table1:0:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:0:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:0:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:0:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:0:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:0:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>admin</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:0:j_idt100 class="rf-dt-c align_left" enableonclick="true">Syncron Admin</TD>
<TD id=coreForm:table1:0:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:0:UniqueId_j_id5>23-May-2013 14:05:35</SPAN></TD>
<TD id=coreForm:table1:0:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:0:UniqueId_j_id6>06-May-2013 10:26:14</SPAN></TD>
<TD id=coreForm:table1:0:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:0:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:0:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:0:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:0:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:1:row class="rf-dt-r odd">
<TD id=coreForm:table1:1:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:1:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:1:select onchange='RichFaces.ajax("coreForm:table1:1:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:1:select"} )' class=selection tabIndex=-1 name=coreForm:table1:1:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:1:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:1:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:1:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:1:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:1:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATKOSHN</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:1:j_idt100 class="rf-dt-c align_left" enableonclick="true">Solveig Hansen</TD>
<TD id=coreForm:table1:1:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:1:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:1:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:1:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:1:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:1:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:1:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:1:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:1:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:2:row class="rf-dt-r even">
<TD id=coreForm:table1:2:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:2:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:2:select onchange='RichFaces.ajax("coreForm:table1:2:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:2:select"} )' class=selection tabIndex=-1 name=coreForm:table1:2:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:2:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:2:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:2:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:2:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:2:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIAKL</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:2:j_idt100 class="rf-dt-c align_left" enableonclick="true">Andrea Kappl</TD>
<TD id=coreForm:table1:2:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:2:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:2:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:2:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:2:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:2:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:2:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:2:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:2:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:3:row class="rf-dt-r odd">
<TD id=coreForm:table1:3:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:3:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:3:select onchange='RichFaces.ajax("coreForm:table1:3:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:3:select"} )' class=selection tabIndex=-1 name=coreForm:table1:3:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:3:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:3:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:3:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:3:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:3:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIAMA</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:3:j_idt100 class="rf-dt-c align_left" enableonclick="true">Andreas Mixa</TD>
<TD id=coreForm:table1:3:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:3:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:3:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:3:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:3:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:3:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:3:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:3:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:3:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:4:row class="rf-dt-r even">
<TD id=coreForm:table1:4:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:4:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:4:select onchange='RichFaces.ajax("coreForm:table1:4:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:4:select"} )' class=selection tabIndex=-1 name=coreForm:table1:4:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:4:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:4:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:4:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:4:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:4:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIAPR</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:4:j_idt100 class="rf-dt-c align_left" enableonclick="true">Astrid Pichler</TD>
<TD id=coreForm:table1:4:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:4:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:4:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:4:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:4:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:4:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:4:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:4:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:4:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:5:row class="rf-dt-r odd">
<TD id=coreForm:table1:5:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:5:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:5:select onchange='RichFaces.ajax("coreForm:table1:5:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:5:select"} )' class=selection tabIndex=-1 name=coreForm:table1:5:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:5:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:5:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:5:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:5:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:5:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVICPT</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:5:j_idt100 class="rf-dt-c align_left" enableonclick="true">Christian Plesskott</TD>
<TD id=coreForm:table1:5:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:5:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:5:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:5:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:5:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:5:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:5:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:5:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:5:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:6:row class="rf-dt-r even">
<TD id=coreForm:table1:6:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:6:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:6:select onchange='RichFaces.ajax("coreForm:table1:6:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:6:select"} )' class=selection tabIndex=-1 name=coreForm:table1:6:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:6:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:6:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:6:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:6:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:6:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIDMI</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:6:j_idt100 class="rf-dt-c align_left" enableonclick="true">Dagmar Marzini</TD>
<TD id=coreForm:table1:6:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:6:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:6:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:6:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:6:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:6:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:6:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:6:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:6:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:7:row class="rf-dt-r odd">
<TD id=coreForm:table1:7:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:7:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:7:select onchange='RichFaces.ajax("coreForm:table1:7:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:7:select"} )' class=selection tabIndex=-1 name=coreForm:table1:7:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:7:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:7:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:7:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:7:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:7:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIEFI</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:7:j_idt100 class="rf-dt-c align_left" enableonclick="true">Ewald Ferrari</TD>
<TD id=coreForm:table1:7:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:7:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:7:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:7:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:7:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:7:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:7:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:7:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:7:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:8:row class="rf-dt-r even">
<TD id=coreForm:table1:8:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:8:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:8:select onchange='RichFaces.ajax("coreForm:table1:8:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:8:select"} )' class=selection tabIndex=-1 name=coreForm:table1:8:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:8:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:8:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:8:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:8:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:8:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIEMH</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:8:j_idt100 class="rf-dt-c align_left" enableonclick="true">Elenore Melwisch</TD>
<TD id=coreForm:table1:8:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:8:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:8:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:8:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:8:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:8:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:8:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:8:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:8:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:9:row class="rf-dt-r odd">
<TD id=coreForm:table1:9:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:9:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:9:select onchange='RichFaces.ajax("coreForm:table1:9:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:9:select"} )' class=selection tabIndex=-1 name=coreForm:table1:9:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:9:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:9:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:9:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:9:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:9:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIEVY</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:9:j_idt100 class="rf-dt-c align_left" enableonclick="true">Eva Vrbicky</TD>
<TD id=coreForm:table1:9:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:9:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:9:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:9:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:9:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:9:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:9:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:9:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:9:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:10:row class="rf-dt-r even">
<TD id=coreForm:table1:10:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:10:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:10:select onchange='RichFaces.ajax("coreForm:table1:10:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:10:select"} )' class=selection tabIndex=-1 name=coreForm:table1:10:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:10:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:10:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:10:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:10:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:10:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIFPZ</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:10:j_idt100 class="rf-dt-c align_left" enableonclick="true">Franz Pritz</TD>
<TD id=coreForm:table1:10:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:10:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:10:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:10:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:10:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:10:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:10:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:10:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:10:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:11:row class="rf-dt-r odd">
<TD id=coreForm:table1:11:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:11:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:11:select onchange='RichFaces.ajax("coreForm:table1:11:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:11:select"} )' class=selection tabIndex=-1 name=coreForm:table1:11:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:11:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:11:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:11:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:11:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:11:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIFVL</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:11:j_idt100 class="rf-dt-c align_left" enableonclick="true">Felix Veigl</TD>
<TD id=coreForm:table1:11:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:11:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:11:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:11:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:11:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:11:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:11:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:11:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:11:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:12:row class="rf-dt-r even">
<TD id=coreForm:table1:12:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:12:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:12:select onchange='RichFaces.ajax("coreForm:table1:12:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:12:select"} )' class=selection tabIndex=-1 name=coreForm:table1:12:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:12:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:12:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:12:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:12:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:12:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIIPR</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:12:j_idt100 class="rf-dt-c align_left" enableonclick="true">Irmgard Pretzner</TD>
<TD id=coreForm:table1:12:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:12:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:12:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:12:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:12:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:12:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:12:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:12:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:12:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:13:row class="rf-dt-r odd">
<TD id=coreForm:table1:13:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:13:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:13:select onchange='RichFaces.ajax("coreForm:table1:13:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:13:select"} )' class=selection tabIndex=-1 name=coreForm:table1:13:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:13:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:13:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:13:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:13:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:13:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIIWN</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:13:j_idt100 class="rf-dt-c align_left" enableonclick="true">Irmgard Wogenstein</TD>
<TD id=coreForm:table1:13:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:13:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:13:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:13:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:13:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:13:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:13:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:13:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:13:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:14:row class="rf-dt-r even">
<TD id=coreForm:table1:14:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:14:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:14:select onchange='RichFaces.ajax("coreForm:table1:14:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:14:select"} )' class=selection tabIndex=-1 name=coreForm:table1:14:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:14:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:14:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:14:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:14:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:14:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIMBL</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:14:j_idt100 class="rf-dt-c align_left" enableonclick="true">Melanievon Borstel</TD>
<TD id=coreForm:table1:14:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:14:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:14:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:14:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:14:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:14:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:14:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:14:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:14:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:15:row class="rf-dt-r odd">
<TD id=coreForm:table1:15:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:15:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:15:select onchange='RichFaces.ajax("coreForm:table1:15:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:15:select"} )' class=selection tabIndex=-1 name=coreForm:table1:15:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:15:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:15:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:15:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:15:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:15:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIMBM</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:15:j_idt100 class="rf-dt-c align_left" enableonclick="true">Markus Böhm</TD>
<TD id=coreForm:table1:15:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:15:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:15:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:15:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:15:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:15:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:15:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:15:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:15:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:16:row class="rf-dt-r even">
<TD id=coreForm:table1:16:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:16:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:16:select onchange='RichFaces.ajax("coreForm:table1:16:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:16:select"} )' class=selection tabIndex=-1 name=coreForm:table1:16:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:16:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:16:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:16:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:16:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:16:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIMHH</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:16:j_idt100 class="rf-dt-c align_left" enableonclick="true">Martin Hösch</TD>
<TD id=coreForm:table1:16:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:16:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:16:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:16:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:16:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:16:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:16:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:16:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:16:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:17:row class="rf-dt-r odd">
<TD id=coreForm:table1:17:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:17:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:17:select onchange='RichFaces.ajax("coreForm:table1:17:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:17:select"} )' class=selection tabIndex=-1 name=coreForm:table1:17:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:17:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:17:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:17:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:17:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:17:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIMLR</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:17:j_idt100 class="rf-dt-c align_left" enableonclick="true">Martin Leodolter</TD>
<TD id=coreForm:table1:17:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:17:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:17:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:17:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:17:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:17:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:17:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:17:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:17:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:18:row class="rf-dt-r even">
<TD id=coreForm:table1:18:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:18:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:18:select onchange='RichFaces.ajax("coreForm:table1:18:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:18:select"} )' class=selection tabIndex=-1 name=coreForm:table1:18:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:18:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:18:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:18:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:18:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:18:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIMPR</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:18:j_idt100 class="rf-dt-c align_left" enableonclick="true">Markus Pleninger</TD>
<TD id=coreForm:table1:18:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:18:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:18:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:18:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:18:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:18:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:18:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:18:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:18:j_idt110>No </SPAN></TD></TR>
<TR id=coreForm:table1:19:row class="rf-dt-r odd">
<TD id=coreForm:table1:19:selectColumn class=rf-dt-c><SPAN id=coreForm:table1:19:select-outer class="input-t-checkbox inline input selection"><INPUT accessKey="" id=coreForm:table1:19:select onchange='RichFaces.ajax("coreForm:table1:19:select",event,{"parameters":{"javax.faces.behavior.event":"change","syncAjax":"coreForm:table1"} ,"sourceId":"coreForm:table1:19:select"} )' class=selection tabIndex=-1 name=coreForm:table1:19:select value="" type=checkbox prevTabIndex="null" prevAccessKey>
<SCRIPT type=text/javascript>//<![CDATA[

//]]>
</SCRIPT>
</SPAN></TD>
<TD id=coreForm:table1:19:idColumn class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:19:j_idt99span class="btn-wrapper btn-link "><A accessKey="" id=coreForm:table1:19:j_idt99 onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("coreForm:table1:19:j_idt99",event,{"parameters":{"syncRender":["modalEdit\u002DContent","modalEdit\u002DHeader"] } ,"incId":"1"} );return false;' href="#" name=coreForm:table1:19:j_idt99 prevTabIndex="null" prevAccessKey><SPAN>ATVIMRR</SPAN></A></SPAN></TD>
<TD id=coreForm:table1:19:j_idt100 class="rf-dt-c align_left" enableonclick="true">Maximilian Reichhuber</TD>
<TD id=coreForm:table1:19:j_idt102 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:19:UniqueId_j_id5>Never</SPAN></TD>
<TD id=coreForm:table1:19:j_idt103 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:19:UniqueId_j_id6>Never</SPAN></TD>
<TD id=coreForm:table1:19:j_idt104 class="rf-dt-c align_left" enableonclick="true">Internal </TD>
<TD id=coreForm:table1:19:j_idt106 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:19:j_idt107>Yes </SPAN></TD>
<TD id=coreForm:table1:19:j_idt109 class="rf-dt-c align_left" enableonclick="true"><SPAN id=coreForm:table1:19:j_idt110>No </SPAN></TD></TR></TBODY></TABLE></DIV></DIV>
<DIV style="TEXT-ALIGN: center"><SPAN id=coreForm:table1:scroll class=rf-ds jQuery15109130434855076535="28"><SPAN id=coreForm:table1:scroll_ds_f class="rf-ds-btn rf-ds-btn-first rf-ds-dis">««««</SPAN><SPAN id=coreForm:table1:scroll_ds_fr class="rf-ds-btn rf-ds-btn-fastrwd rf-ds-dis">««</SPAN><SPAN id=coreForm:table1:scroll_ds_1 class="rf-ds-nmb-btn rf-ds-act " jQuery15109130434855076535="36">1</SPAN><A accessKey="" id=coreForm:table1:scroll_ds_2 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="32" prevTabIndex="null" prevAccessKey>2</A><A accessKey="" id=coreForm:table1:scroll_ds_3 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="31" prevTabIndex="null" prevAccessKey>3</A><A accessKey="" id=coreForm:table1:scroll_ds_4 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="34" prevTabIndex="null" prevAccessKey>4</A><A accessKey="" id=coreForm:table1:scroll_ds_5 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="33" prevTabIndex="null" prevAccessKey>5</A><A accessKey="" id=coreForm:table1:scroll_ds_6 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="38" prevTabIndex="null" prevAccessKey>6</A><A accessKey="" id=coreForm:table1:scroll_ds_7 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="37" prevTabIndex="null" prevAccessKey>7</A><A accessKey="" id=coreForm:table1:scroll_ds_8 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="40" prevTabIndex="null" prevAccessKey>8</A><A accessKey="" id=coreForm:table1:scroll_ds_9 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="39" prevTabIndex="null" prevAccessKey>9</A><A accessKey="" id=coreForm:table1:scroll_ds_10 class="rf-ds-nmb-btn " tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="35" prevTabIndex="null" prevAccessKey>10</A><A accessKey="" id=coreForm:table1:scroll_ds_ff class="rf-ds-btn rf-ds-btn-fastfwd" tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="29" prevTabIndex="null" prevAccessKey>»»</A><A accessKey="" id=coreForm:table1:scroll_ds_l class="rf-ds-btn rf-ds-btn-last" tabIndex=-1 href="javascript:void(0);" jQuery15109130434855076535="30" prevTabIndex="null" prevAccessKey>»»»»</A>
<SCRIPT type=text/javascript>new RichFaces.ui.DataScroller("coreForm:table1:scroll",function(event,element,data){RichFaces.ajax("coreForm:table1:scroll",event,{"parameters":{"coreForm:table1:scroll:page":data.page} ,"incId":"1"} )},{"digitals":{"coreForm:table1:scroll_ds_3":"3","coreForm:table1:scroll_ds_2":"2","coreForm:table1:scroll_ds_5":"5","coreForm:table1:scroll_ds_4":"4","coreForm:table1:scroll_ds_10":"10","coreForm:table1:scroll_ds_1":"1","coreForm:table1:scroll_ds_7":"7","coreForm:table1:scroll_ds_6":"6","coreForm:table1:scroll_ds_9":"9","coreForm:table1:scroll_ds_8":"8"} ,"buttons":{"right":{"coreForm:table1:scroll_ds_ff":"fastforward","coreForm:table1:scroll_ds_l":"last"} } ,"currentPage":1} )</SCRIPT>
</SPAN></DIV><SPAN id=coreForm:table1:totals-bottomspan>
<DIV class=toolbar_center><SPAN class=toolbarElement>Total number of rows: <SPAN class=totalsValue>2695</SPAN></SPAN></DIV></SPAN></SPAN></SPAN>
<DIV style="VISIBILITY: hidden" id=coreForm:errorPopup>
<DIV style="Z-INDEX: 100" id=coreForm:errorPopup_shade class=rf-pp-shade><BUTTON id=coreForm:errorPopupFirstHref class=rf-pp-btn></BUTTON></DIV>
<DIV style="Z-INDEX: 100; POSITION: fixed" id=coreForm:errorPopup_container class="rf-pp-cntr ">
<DIV style="FILTER:  alpha(opacity=10); ZOOM: 1" id=coreForm:errorPopup_shadow class=rf-pp-shdw></DIV>
<DIV style="CURSOR: move" id=coreForm:errorPopup_header class="rf-pp-hdr " jQuery15109130434855076535="41">
<DIV id=coreForm:errorPopup_header_content class=rf-pp-hdr-cnt><SPAN id=coreForm:errorPopup-headerText>Error</SPAN></DIV></DIV>
<DIV id=coreForm:errorPopup_header_controls class="rf-pp-hdr-cntrls "><SPAN id=coreForm:errorPopup-controls class=closeModalIcon><IMG id=coreForm:errorPopup-img onclick="RichFaces.ui.ComponentControl.execute(event,{&quot;selector&quot;:null,&quot;target&quot;:[&quot;coreForm:errorPopup&quot;] ,&quot;callback&quot;:function(event,component){component['hide'].apply(component,[] );}} ); return false;" src="/faces/javax.faces.resource/close_window.png?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></SPAN></DIV>
<DIV id=coreForm:errorPopup_content_scroller class=rf-pp-cnt-scrlr>
<DIV id=coreForm:errorPopup_content class=rf-pp-cnt>
<TABLE style="HEIGHT: 127px" id=coreForm:errorPopup-gridOver class=center>
<TBODY>
<TR>
<TD>
<TABLE id=coreForm:errorPopup-grid class=center>
<TBODY>
<TR>
<TD><SPAN id=coreForm:errorPopupMessages></SPAN></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV id=coreForm:errorPopup-unsaved-toolbar class="toolbar toolbar-layout-grid">
<DIV style="FLOAT: right">
<DIV class="toolbar-grp primary"><SPAN class=primary_button><SPAN id=coreForm:errorPopup-unsaved-toolbar:errorPopup-okspan class="btn-wrapper  "><A accessKey="" id=coreForm:errorPopup-unsaved-toolbar:errorPopup-ok onmouseup="this.blur(); " class="btn   " tabIndex=-1 onclick="RichFaces.ui.PopupPanel.hidePopupPanel('coreForm:errorPopup');;return false;" href="#" name=coreForm:errorPopup-unsaved-toolbar:errorPopup-ok prevTabIndex="null" prevAccessKey><SPAN>OK</SPAN></A></SPAN></SPAN></DIV></DIV><SPAN class=clearfix></SPAN></DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>new RichFaces.ui.PopupPanel("coreForm:errorPopup",{"domElementAttachment":"form"} );</SCRIPT>
</DIV></DIV></DIV></DIV><INPUT accessKey="" id=javax.faces.ViewState tabIndex=-1 name=javax.faces.ViewState value=8784530674440485343:356870173144626688 type=hidden autocomplete="off" prevTabIndex="null" prevAccessKey> </FORM></DIV></DIV></DIV>
<DIV id=ft>
<DIV id=footer>One4AL 4.4.10, ©204 Syncron International AB </DIV></DIV></DIV>
<DIV id=defaultPopupBox_HiddenMarkup_internal></DIV>
<DIV style="DISPLAY: block" id=modalCreate>
<SCRIPT type=text/javascript>new RichFaces.ui.PopupPanel("modalCreate",{"left":"20","top":"100","autosized":true,"domElementAttachment":"body","height":455,"minWidth":750,"width":750,"zindex":98,"onresize":function(event){;},"onshow":function(event){; PopupRegister.register('modalCreate', 'modalCreateContentDiv'); PopupUtils.scrollbarFixOnShow('modalCreate');}} );</SCRIPT>
</DIV>
<SCRIPT type=text/javascript>//<![CDATA[
shortcut.add("Esc", function(event) { RichFaces.ui.PopupPanel.hidePopupPanel('modalCreate'); PopupRegister.unregister('modalCreate'); PopupUtils.scrollbarFixOnHide('modalCreate') }, {'type':'keydown','propagate':false,'target':document.getElementById("modalCreate_container")})
//]]>
</SCRIPT>

<DIV style="VISIBILITY: hidden" id=modalEdit>
<DIV style="Z-INDEX: 98" id=modalEdit_shade class=rf-pp-shade><BUTTON id=modalEditFirstHref class=rf-pp-btn></BUTTON></DIV>
<DIV style="Z-INDEX: 98; POSITION: fixed" id=modalEdit_container class="rf-pp-cntr " jQuery15109130434855076535="45">
<DIV style="FILTER:  alpha(opacity=10); ZOOM: 1" id=modalEdit_shadow class=rf-pp-shdw></DIV>
<DIV style="CURSOR: move" id=modalEdit_header class="rf-pp-hdr " jQuery15109130434855076535="44">
<DIV id=modalEdit_header_content class=rf-pp-hdr-cnt><SPAN id=modalEdit-Header></SPAN></DIV></DIV>
<DIV id=modalEdit_header_controls class="rf-pp-hdr-cntrls ">
<DIV class=closeModalIcon><IMG id=j_idt260 onclick="RichFaces.ui.PopupPanel.hidePopupPanel('modalEdit'); PopupRegister.unregister('modalEdit'); PopupUtils.scrollbarFixOnHide('modalEdit')" src="/faces/javax.faces.resource/close_window.png?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></DIV></DIV>
<DIV id=modalEdit_content_scroller class=rf-pp-cnt-scrlr>
<DIV id=modalEdit_content class=rf-pp-cnt>
<DIV style="POSITION: relative; ZOOM: 1" id=modalEdit-contentWrapper>
<DIV style="POSITION: relative; ZOOM: 1; HEIGHT: auto" id=modalEdit-contentWrapperInner>
<DIV id=modalEdit-Content></DIV></DIV></DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>new RichFaces.ui.PopupPanel("modalEdit",{"left":"20","top":"100","autosized":true,"domElementAttachment":"body","minHeight":439,"minWidth":720,"width":720,"zindex":98,"onresize":function(event){;},"onshow":function(event){; PopupRegister.register('modalEdit', 'modalEditContentDiv'); PopupUtils.scrollbarFixOnShow('modalEdit');}} );</SCRIPT>
</DIV>
<SCRIPT type=text/javascript>//<![CDATA[
shortcut.add("Esc", function(event) { RichFaces.ui.PopupPanel.hidePopupPanel('modalEdit'); PopupRegister.unregister('modalEdit'); PopupUtils.scrollbarFixOnHide('modalEdit') }, {'type':'keydown','propagate':false,'target':document.getElementById("modalEdit_container")})
//]]>
</SCRIPT>

<DIV style="VISIBILITY: hidden" id=exportUsers>
<DIV style="Z-INDEX: 98" id=exportUsers_shade class=rf-pp-shade><BUTTON id=exportUsersFirstHref class=rf-pp-btn></BUTTON></DIV>
<DIV style="Z-INDEX: 98; POSITION: fixed" id=exportUsers_container class="rf-pp-cntr " jQuery15109130434855076535="47">
<DIV style="FILTER:  alpha(opacity=10); ZOOM: 1" id=exportUsers_shadow class=rf-pp-shdw></DIV>
<DIV style="CURSOR: move" id=exportUsers_header class="rf-pp-hdr " jQuery15109130434855076535="46">
<DIV id=exportUsers_header_content class=rf-pp-hdr-cnt><SPAN id=exportUsers-Header></SPAN></DIV></DIV>
<DIV id=exportUsers_header_controls class="rf-pp-hdr-cntrls ">
<DIV class=closeModalIcon>
<FORM id=exportUsersCloseForm method=post name=exportUsersCloseForm action=/views/securitymanagement/users/users.xhtml><INPUT accessKey="" tabIndex=-1 name=exportUsersCloseForm value=exportUsersCloseForm type=hidden prevTabIndex="null" prevAccessKey> <SPAN id=exportUsersCloseForm:exportUsersCloseActionspan class="btn-wrapper btn-link "><A accessKey="" id=exportUsersCloseForm:exportUsersCloseAction onmouseup="this.blur(); " class="btn btn-link  " tabIndex=-1 onclick='RichFaces.ajax("exportUsersCloseForm:exportUsersCloseAction",event,{"parameters":{"syncRender":""} ,"incId":"1"} );return false;' href="#" name=exportUsersCloseForm:exportUsersCloseAction prevTabIndex="null" prevAccessKey><IMG id=exportUsersCloseForm:exportUsers class=exportWizard src="/faces/javax.faces.resource/close_window.png?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></A></SPAN><INPUT accessKey="" id=javax.faces.ViewState tabIndex=-1 name=javax.faces.ViewState value=8784530674440485343:356870173144626688 type=hidden autocomplete="off" prevTabIndex="null" prevAccessKey> </FORM></DIV></DIV>
<DIV id=exportUsers_content_scroller class=rf-pp-cnt-scrlr>
<DIV id=exportUsers_content class=rf-pp-cnt>
<DIV style="POSITION: relative; ZOOM: 1" id=exportUsers-contentWrapper>
<DIV style="POSITION: relative; ZOOM: 1; HEIGHT: auto" id=exportUsers-contentWrapperInner>
<DIV id=exportUsers-Content></DIV></DIV></DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>new RichFaces.ui.PopupPanel("exportUsers",{"left":"80","top":"30","autosized":true,"domElementAttachment":"body","minWidth":520,"width":520,"zindex":98,"onresize":function(event){;},"onshow":function(event){; PopupRegister.register('exportUsers', 'exportUsersContentDiv'); PopupUtils.scrollbarFixOnShow('exportUsers');}} );</SCRIPT>
</DIV>
<SCRIPT type=text/javascript>//<![CDATA[
shortcut.add("Esc", function(event) { RichFaces.ui.PopupPanel.hidePopupPanel('exportUsers'); PopupRegister.unregister('exportUsers'); PopupUtils.scrollbarFixOnHide('exportUsers') }, {'type':'keydown','propagate':false,'target':document.getElementById("exportUsers_container")})
//]]>
</SCRIPT>

<FORM id=autoDetectWidthForm method=post name=autoDetectWidthForm action=/views/securitymanagement/users/users.xhtml><INPUT name=autoDetectWidthForm value=autoDetectWidthForm type=hidden> <SPAN style="DISPLAY: none" id=autoDetectedWidth>1140</SPAN><SPAN style="DISPLAY: none" id=autoDetectWidthForm:j_idt492></SPAN> <INPUT value=8784530674440485343:356870173144626688 type=hidden><INPUT value=8784530674440485343:356870173144626688 type=hidden></FORM><SPAN style="DISPLAY: none" id=currentsession>597C3746AF0126F16EB61FDDA8F2F03D</SPAN>
<SCRIPT type=text/javascript>$(window).load(function() { window.setTimeout(function() { new Popup("coreForm:linkToThisPage","coreForm:j_idt43",300,{"isDraggable":true,"dragHandleId":"coreForm:j_idt43\u002DdragHandle","xoffset":0,"yoffset":6,"explicitClose":true} );}, 1); });</SCRIPT>
 
<DIV style="Z-INDEX: 98" id=modalCreate_shade class=rf-pp-shade><BUTTON id=modalCreateFirstHref class=rf-pp-btn></BUTTON></DIV>
<DIV style="Z-INDEX: 98; POSITION: fixed; WIDTH: 750px; HEIGHT: 455px; TOP: 100px; LEFT: 20px" id=modalCreate_container class="rf-pp-cntr " jQuery15109130434855076535="43">
<DIV style="FILTER:  alpha(opacity=10); WIDTH: 750px; BOTTOM: -5px; ZOOM: 1; TOP: 5px; LEFT: 5px" id=modalCreate_shadow class=rf-pp-shdw></DIV>
<DIV style="CURSOR: move" id=modalCreate_header class="rf-pp-hdr " jQuery15109130434855076535="42">
<DIV id=modalCreate_header_content class=rf-pp-hdr-cnt><SPAN id=modalCreate-Header>Create new user</SPAN></DIV></DIV>
<DIV id=modalCreate_header_controls class="rf-pp-hdr-cntrls ">
<DIV class=closeModalIcon><IMG id=j_idt126 onclick="RichFaces.ui.PopupPanel.hidePopupPanel('modalCreate'); PopupRegister.unregister('modalCreate'); PopupUtils.scrollbarFixOnHide('modalCreate')" src="/faces/javax.faces.resource/close_window.png?ln=com/syncron/faces/images/unsecured&amp;v=sync4.4.10.0_12.2.4.7"></DIV></DIV>
<DIV style="WIDTH: 750px; HEIGHT: 437px" id=modalCreate_content_scroller class=rf-pp-cnt-scrlr>
<DIV id=modalCreate_content class=rf-pp-cnt>
<DIV style="POSITION: relative; ZOOM: 1" id=modalCreate-contentWrapper>
<DIV style="POSITION: relative; ZOOM: 1; HEIGHT: auto" id=modalCreate-contentWrapperInner>
<DIV style="ZOOM: 1" id=modalCreate-Content>
<FORM id=modalCreateForm method=post name=modalCreateForm action=/views/securitymanagement/users/users.xhtml><INPUT name=modalCreateForm value=modalCreateForm type=hidden> 
<DIV style="HEIGHT: 412px" id=modalCreateForm:createUserWizard class="rf-tgp wizard" jQuery15109130434855076535="50"><INPUT id=modalCreateForm:createUserWizard-value name=modalCreateForm:createUserWizard-value value=j_idt128 type=hidden>
<DIV style="HEIGHT: 385px" class=wizardConentDiv>
<DIV style="WIDTH: 160px" class=wizardHistory>
<TABLE id=modalCreateForm:createUserWizard-history class=wizardHistory>
<TBODY>
<TR class=wizardCurrentStep>
<TD class=wizardCurrentStepImage><IMG id=modalCreateForm:createUserWizard-history-image alt="" src="http://seluws0211/faces/javax.faces.resource/arrow_right.gif?ln=com/syncron/faces/images&amp;v=sync4.4.10.0_12.2.4.7"></TD>
<TD>1</TD>
<TD><SPAN id=modalCreateForm:j_idt128-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt128-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt128-entry><SPAN>Type of the user</SPAN></A></SPAN></TD></TR>
<TR>
<TD></TD>
<TD>2</TD>
<TD><SPAN id=modalCreateForm:j_idt135-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt135-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt135-entry><SPAN>User information</SPAN></A></SPAN></TD></TR>
<TR>
<TD></TD>
<TD>3</TD>
<TD><SPAN id=modalCreateForm:j_idt157-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt157-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt157-entry><SPAN>User interface</SPAN></A></SPAN></TD></TR>
<TR>
<TD></TD>
<TD>4</TD>
<TD><SPAN id=modalCreateForm:j_idt179-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt179-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt179-entry><SPAN>Authentication</SPAN></A></SPAN></TD></TR>
<TR>
<TD></TD>
<TD>5</TD>
<TD><SPAN id=modalCreateForm:j_idt189-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt189-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt189-entry><SPAN>Assign roles</SPAN></A></SPAN></TD></TR>
<TR>
<TD></TD>
<TD>6</TD>
<TD><SPAN id=modalCreateForm:j_idt200-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt200-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt200-entry><SPAN>BPE profile</SPAN></A></SPAN></TD></TR>
<TR>
<TD></TD>
<TD>7</TD>
<TD><SPAN id=modalCreateForm:j_idt245-entryspan class="btn-wrapper btn-link "><A id=modalCreateForm:j_idt245-entry class="btn btn-link disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:j_idt245-entry><SPAN>Summary</SPAN></A></SPAN></TD></TR></TBODY></TABLE></DIV>
<DIV style="HEIGHT: 385px" class=wizardCurrentContent>
<DIV id=modalCreateForm:j_idt128 class=rf-tgp-itm>
<DIV class=wizardStepTitle>Type of the user</DIV>
<DIV class=create_user_wizard_step>
<DIV style="TEXT-ALIGN: left">
<P>Choose the type of the user to be created: </P>
<DIV style="MARGIN: 15px 150px">
<DIV id=modalCreateForm:selectType-outer class="framed input required input-t-selectoneradio block input-selection"><SPAN class=input-icon-required></SPAN>
<DIV id=modalCreateForm:selectType>
<DIV class=options>
<TABLE class=sync-option-grp>
<TBODY>
<TR>
<TD class=input-sl-box><INPUT id=modalCreateForm:selectType:option:INTERNAL name=modalCreateForm:selectType value=INTERNAL CHECKED type=radio></TD>
<TD class=input-sl-label><LABEL for=modalCreateForm:selectType:option:INTERNAL>Internal</LABEL></TD></TR>
<TR>
<TD class=input-sl-box><INPUT id=modalCreateForm:selectType:option:EXTERNAL name=modalCreateForm:selectType value=EXTERNAL type=radio></TD>
<TD class=input-sl-label><LABEL for=modalCreateForm:selectType:option:EXTERNAL>External</LABEL></TD></TR></TBODY></TABLE></DIV></DIV></DIV></DIV>
<P style="MARGIN: 15px"><B>Internal</B>: Internal users' authentication details (including password) is managed by the BPE application. </P>
<P style="MARGIN: 15px"><B>External</B>: External users are users that some external system provides authentication for. BPE application stores no password for such users. All the authentication requests are delegated. </P></DIV></DIV></DIV>
<DIV style="DISPLAY: none" id=modalCreateForm:j_idt135></DIV>
<DIV style="DISPLAY: none" id=modalCreateForm:j_idt157></DIV>
<DIV style="DISPLAY: none" id=modalCreateForm:j_idt179></DIV>
<DIV style="DISPLAY: none" id=modalCreateForm:j_idt189></DIV>
<DIV style="DISPLAY: none" id=modalCreateForm:j_idt200></DIV>
<DIV style="DISPLAY: none" id=modalCreateForm:j_idt245></DIV></DIV></DIV>
<DIV class=modalToolbar>
<DIV class=wizardToolbarButtonAllign><SPAN id=modalCreateForm:createUserWizard-toolbar><SPAN id=modalCreateForm:createUserWizard-prevspan class="btn-wrapper  "><A id=modalCreateForm:createUserWizard-prev class="btn  disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:createUserWizard-prev><SPAN>&lt; Prev</SPAN></A></SPAN><SPAN id=modalCreateForm:createUserWizard-nextspan class="btn-wrapper  "><A id=modalCreateForm:createUserWizard-next onmouseup="this.blur(); " class="btn   " onclick="jsf.util.chain(this,event,&quot;RichFaces.$('modalCreateForm:createUserWizard').switchToItem('@next'); return false;&quot;,&quot;RichFaces.ajax(\&quot;modalCreateForm:createUserWizard\\u002Dnext\&quot;,event,{\&quot;incId\&quot;:\&quot;1\&quot;} )&quot;);return false;" href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:createUserWizard-next><SPAN>Next &gt;</SPAN></A></SPAN><SPAN id=modalCreateForm:createUserWizard-finishspan class="btn-wrapper  "><A id=modalCreateForm:createUserWizard-finish class="btn  disabled " tabIndex=-1 href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:createUserWizard-finish><SPAN>Finish</SPAN></A></SPAN><SPAN id=modalCreateForm:createUserWizard-cancelspan class="btn-wrapper  "><A id=modalCreateForm:createUserWizard-cancel onmouseup="this.blur(); " class="btn   " onclick='RichFaces.ajax("modalCreateForm:createUserWizard\u002Dcancel",event,{"incId":"1"} );return false;' href="http://seluws0211/views/securitymanagement/users/users.xhtml#" name=modalCreateForm:createUserWizard-cancel><SPAN>Cancel</SPAN></A></SPAN></SPAN></DIV></DIV></DIV><INPUT value=8784530674440485343:356870173144626688 type=hidden><INPUT value=8784530674440485343:356870173144626688 type=hidden></FORM></DIV></DIV></DIV></DIV></DIV></DIV></BODY></HTML>

Yours sincerely

Kenneth.

Link to comment
Share on other sites

Hmm, I guess, I didn't find out how to pick the radiobutton after all.

So here is my problem. I want to pick the radiobutton and press on the next button.

Is there anyone who could help me. I don't understand why this is not working.

if _IELinkClickByText($oIE, $searchobj) <> -1 Then
    Local $NewUserButton = _IEGetObjById($oForm, 'coreForm:table1:createUserToolbar:createUserButton')
    _IEAction($NewUserButton, "click")
    $oForm = _IEFormGetObjByName($oIE, "modalCreateForm")
    _IEFormElementRadioSelect($oForm,1,"modalCreateForm:selectType",1,"byIndex")
    Local $NextButton = _IEGetObjById($oForm, "modalCreateForm:createUserWizard-next")
    _IEAction($NextButton, "click")
EndIf

Yours sincerely

Kenneth.

Link to comment
Share on other sites

  • Solution

I solved it.

$iTimer = TimerInit()
$oObj = _IEGetObjById($oIE, "modalCreateForm:createUserWizard-next")
While Not IsObj($oObj) And TimerDiff($iTimer)<10000
        sleep (100)
    $oObj = _IEGetObjById($oIE, "modalCreateForm:createUserWizard-next")
WEnd
If IsObj($oObj) Then
    Local $oForm = _IEFormGetObjByName($oIE, "modalCreateForm")
    _IEFormElementRadioSelect($oForm,"INTERNAL","modalCreateForm:selectType")
    Local $NextButton = _IEGetObjById($oForm, "modalCreateForm:createUserWizard-next")
    _IEAction($NextButton, "click")
Else
    MsgBox(1,1,"unable to grab object within 10 seconds")
EndIf

Yours sincerely

Kenneth.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...