        
        function BenaUrls(code)
        {
            switch (code)
            {                    
                case "home":
                    document.location.href = 'http://www.tradingfloors.net/Default.aspx?tabid=716';
                    break;
            }
        }
        
        function My_SendContactForm() { 
            var valid = true;
            
            if ($F('lastname') == '')
            {
                valid = false;
                $('lastname').addClassName('missing');
            }
            else
            {
                $('lastname').removeClassName('missing');
            }
            
            if ($F('email') == '')
            {
                valid = false;
                $('email').addClassName('missing');
            }
            else
            {
                $('email').removeClassName('missing');
            }
            
            if (!valid) return;
            
            new Ajax.Request('http://www.tradingfloors.net/Portals/sendContactMail.aspx', { 
                onSuccess: My_ContactFormSent, method: 'post', parameters: { page: 'tradingfloors', 
                locations: $F('locations'), services: $F('services'), kom: $F('kom'), sex: $F('sex'), title: $F('title'), 
                firstname: $F('firstname'), lastname: $F('lastname'), email: $F('email'), phone: $F('phone'), 
                comment: $F('comment') }}); 
        } 
        
        function My_ContactFormSent() { document.location.href = 'http://www.tradingfloors.net/Default.aspx?tabid=816'; }
