<head><title>button1.html</title>
<script src=../window.js></script>
<script src=../examples.js></script>
</head>

<body>
<script>

function act() {
    alert("pushed")
}

var b1 = new button("text1",act)
var b2 = new button("text1",act)
var m = new menu()
m.addButton(b1)
m.addButton(b2)
m.realSticky(true)
m.showAt(50,50)

</script>
</body>