--- ajaxim/js/bk.window.js 2007-10-11 17:15:22.000000000 -0400 +++ ajaxim/js/window.js 2007-10-11 17:17:09.000000000 -0400 @@ -1159,10 +1159,10 @@ var WindowUtilities = { var pageSize = WindowUtilities.getPageSize(); // Hide select boxes as they will 'peek' through the image in IE - if (contentId && isIE) { - $$ID('select').each(function(element) {element.style.visibility = "hidden"}); - $$ID('#'+contentId+' select').each(function(element) {element.style.visibility = "visible"}); - } + if (contentId && isIE) { + if($ID('select')=='null') $ID('select').each(function(element) {element.style.visibility = "hidden"}); + if($ID('#'+contentId+' select')=='null') $ID('#'+contentId+' select').each(function(element) {element.style.visibility = "visible"}); + } // set height of Overlay to take up whole page and show objOverlay.style.height = (pageSize.pageHeight + 'px'); @@ -1178,8 +1178,8 @@ var WindowUtilities = { objOverlay.style.display = 'none'; // make select boxes visible - if (isIE) { - $$ID('select').each(function(element) {element.style.visibility = "visible"}); + if (isIE) { + if($ID('select')=='null') $ID('select').each(function(element) {element.style.visibility = "visible"}); } objOverlay.parentNode.removeChild(objOverlay); } --- bk.ajax_im.js 2007-10-11 17:18:27.000000000 -0400 +++ ajax_im.js 2007-10-11 17:21:00.000000000 -0400 @@ -124,7 +124,7 @@ function new_im_dialog() { } newIMWin = new Window('newIM', - {className: "dialog", width: 240, height: 120, resizable: false, zIndex: 1, + {className: "dialog", width: 240, height: 170, resizable: false, zIndex: 1, title: "New Instant Message...", draggable: true, closable: true, maximizable: false, minimizable: false, detachable: false, minWidth: 240, minHeight: 120, showEffectOptions: {duration: 0}, hideEffectOptions: {duration: 0}}); newIMWin.getContent().innerHTML = '
\
';
$ID('newim_buttons').style.position = 'absolute';
- $ID('newim_buttons').style.top = '110px';
+ $ID('newim_buttons').style.top = '150px';
$ID('newim_buttons').style.left = '25px';
newIMWin.setDestroyOnClose();
newIMWin.showCenter();
@@ -152,7 +152,7 @@ function new_room_dialog() {
}
newRoomWin = new Window('newRoom',
- {className: "dialog", width: 240, height: 120, resizable: false, zIndex: 1,
+ {className: "dialog", width: 240, height: 170, resizable: false, zIndex: 1,
title: "Join a Chatroom...", draggable: true, closable: true, maximizable: false, minimizable: false, detachable: false,
minWidth: 240, minHeight: 120, showEffectOptions: {duration: 0}, hideEffectOptions: {duration: 0}});
newRoomWin.getContent().innerHTML = '
\
';
$ID('newroom_buttons').style.position = 'absolute';
- $ID('newroom_buttons').style.top = '110px';
+ $ID('newroom_buttons').style.top = '150px';
$ID('newroom_buttons').style.left = '25px';
newRoomWin.setDestroyOnClose();
newRoomWin.showCenter();
@@ -1100,4 +1100,4 @@ function setFontColor(color) {
}
/************************************************/
-/* this should be added after all js */
\ No newline at end of file
+/* this should be added after all js */