function index_DoFSCommand( command, args ) { if( command == 'PAGE' ) { switch( args ) { case( 'hebrew' ): location.href = "/LINK_CONTROLLER/?=heb"; break; case( 'english' ): location.href = "/LINK_CONTROLLER/?=eng"; break; case( 'spain' ): location.href = "/LINK_CONTROLLER/?=esp"; break; } } } function DoNothing( ) { } function openMenu( name ) { document.getElementById( name ).style.visibility = "visible"; } function closeMenu( name ) { document.getElementById( name ).style.visibility = "hidden"; } function menu_redirect( url, did ) { location.href = '?did' + '=' + did; } function menu_redirecturl( url, did ) { location.href = url + '?did' + '=' + did; } function openCenterWindow( url, wd, ht, scroll ) { d = ( screen.width - wd )/2; h = ( ( screen.height-ht )/2 ); window.open(url,'','top=' + h + ',left=' + d + ',width=' + wd + ',height=' + ht + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scroll + ',resizable=' + scroll + '').focus(); } function SetBackTOTopLink() { if( ( document.body.scrollHeight - 100 ) > document.body.offsetHeight ) { HrefBackToTop.innerHTML = 'Back to Top'; HrefBackToTop.href = '#top'; } else { HrefBackToTop.innerHTML = ''; HrefBackToTop.href = ''; } } var shown_id = "menu_about"; function showSubMenu( id ) { document.getElementById( shown_id ).style.display = "none"; document.getElementById( id ).style.display = "block"; shown_id = id; } function showMenu() { document.getElementById( shown_id ).style.display = "block"; } function hideMenu( ) { document.getElementById( shown_id ).style.display = "none"; } function homepage_DoFSCommand( command, args ) { if( command == "PAGE" ) { switch( args ) { case '1': location.href = "/recruiting/"; break; case '2': location.href = "/contact/"; break; case '3': location.href = "/news/"; break; case '4': location.href = "/team/"; break; case '5': location.href = "/practice-areas/"; break; case '6': location.href = "/about/"; break; } } } function PrintArticle( ) { window.open( '/printer/', '_printer_', "width=636,height=431,toolbar=no,location=no,directories=no,scrollbars=yes,statusbar=no,status=no,resizable=no" ).focus( ); }