/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function neues(url,targetname){
    window.setTimeout("neuesFenster('" + url + "', '" + targetname + "')", 500);
}

function neuesFenster(url, targetname){
    var actWidth = screen.width - 8;
    var actHeight = ( screen.height - 55 );
    window.name='EGISAuction';
    if(targetname == 'egis'){
        fenster = window.open (url, targetname, 'menubar=no,scrollbars=no,toolbar=no,status=no,resizable=yes,top=0,left=0,width='+actWidth+',height='+actHeight);
    }else{
        fenster = window.open (url, targetname, 'top=0,left=0,width='+actWidth+',height='+actHeight+',location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,tabbed=yes');
    }
    fenster.focus();
}


function focusElement(){
    loginInput = document.getElementById('htmlForm1:inputUsername');
    if(loginInput.value != null && loginInput.value != ''){
        document.getElementById('htmlForm1:inputPassword').focus();
    }else{
        loginInput.focus();
    }
}