// NEW function for translation drop down
 function dropdownMenu() {
                var menu = document.getElementById('lang_dropdown');
                menu.style.height = 83 + "px";
		menu.style.zIndex = 500;
        }

        function pullupMenu() {
                var menu = document.getElementById('lang_dropdown');
                menu.style.height = "20px";
        }
		
   function newwindow()
        {
window.open('width=300,height=200,resizable=yes');
        } 

