// JavaScript Document
function menu()
   {  
   window.open('menu/default.html','menu','width=1000,height=700'); 
    }
function menu()
   {  
   window.open('schemisale/Default.html','menu','width=1000,height=700'); 
    }
function newWindow()
{
  var int_windowLeft = (screen.width - 840) / 2;
  var int_windowTop = (screen.height - 600) / 2;
  var str_windowProperties = 'height=' + 600 + ',width=' + 840 + ',top=' + int_windowTop + ',left=' + int_windowLeft + ',scrollbars=' + 1 + ',resizable=' + 1 + ',menubar=' + 0 + ',toolbar=' + 0 + ',location=' + 0 + ',statusbar=' + 0 + ',fullscreen=' + 0 + '';
  var obj_window = window.open('guestbook/default.asp', 'popupgest', str_windowProperties)
    if (parseInt(navigator.appVersion) >= 4) {
      obj_window.window.focus();
    }
}