home *** CD-ROM | disk | FTP | other *** search
- function resizeBrowserWindow(width,height) {
- window.resizeTo(width,height);
- }
- function behaviorFunction() {
- return "resizeBrowserWindow";
- }
-
- function canAcceptBehavior() {
- return ("onMouseUp");
- }
-
- function applyBehavior() {
- var width=document.theForm.width.value;
- var height=document.theForm.height.value;
- return "resizeBrowserWindow(" + width + "," + height + ")";
- }
-
- function initializeUI() {
- document.theForm.width.focus();
- document.theForm.width.select();
- }
-
-