function startShow(menu) { theMenu = "menu" + menu; document.getElementById(theMenu).style.visibility = "visible"; return false; } function startHidden(menu) { theMenu = "menu" + menu; document.getElementById(theMenu).style.visibility = "hidden"; return false; } function OpenDocumentFromView(a) { w=window.open(a, 'FormAdd', 'status=yes,resizable=yes,scrollbars=yes,left=0,top=0,width=600,height=600'); }