home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 July & August
/
PCWorld_2005-07-08_cd.bin
/
komunikace
/
netscape
/
nsb-install-8-0.exe
/
chrome
/
aim.jar
/
content
/
aim
/
TabSetup.js
< prev
next >
Wrap
Text File
|
2004-12-02
|
815b
|
26 lines
function AimWindowLoad2(topWindow)
{
// Make it move to the Setup Tab not online tab
var tabObj = topWindow.frames["AimSidebarPanel"].document.getElementById("tabOnline");
tabObj.setAttribute("style","");
tabObj.setAttribute("selected","false");
tabObj = topWindow.frames["AimSidebarPanel"].document.getElementById("tabSetup");
//tabObj.setAttribute("style","text-decoration:underline;");
tabObj.setAttribute("selected","true");
//tabObj.click();
var tabPanel = topWindow.frames["AimSidebarPanel"].document.getElementById("OnlineOrgTabPanel");
tabPanel.setAttribute("selectedIndex",1);
var parentState = topWindow.document.getElementById("AimSidebarState");
if(!parentState)
return;
dump("got parent State\n");
parentState.setAttribute("AimSidebarTab", "Setup");
}