popup w JavaScript problem pod windowsXP

Witam,
mam kod do tworzenia popupow, ale mam pewien problem: wyskakujacy popup ma w swoim okienku na dole widoczny pasek z podpisem gotowe itd jest to chyba status okienka. W kodzie javy ustawilem statusbar=no probowalem tez opcji status=no ale nic to nie daje. Pod Opera nie pojawia sie ten dolny pasek i jest ok. Jak moge pozbawic okienko tego statusu? potrzebuje uzyskac okno bez dodatkowych linijek.




var JSFSplashWin = null;

function JSFSplashShowImage(url) {
width=height=25;
borderless=false;
ScrWidth = 640; ScrHeight = 480;
if (window.screen) {ScrWidth = window.screen.width; ScrHeight = window.screen.height}
PosX = Math.round((ScrWidth – width–200)/2);
PosY = Math.round((ScrHeight – height–200)/2);

if (JSFSplashWin != null && !document.layers) {JSFSplashWin.close();}
if (borderless && !document.layers) {
JSFSplashWin = window.open("", "splash", "fullscreen=1,toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,resizable=0");
JSFSplashWin.resizeTo(width+20, height+20);
JSFSplashWin.moveTo(100, 100);
}
else
JSFSplashWin = window.open("", "splash", "scrollbars=no,location=no,directories=no,menubar=no,toolbar=no,resizable=no,dependent=no,copyhistory=no,statusbar=no,width=" + width + ",height=" + height + ",left=" + 100+ ",top=" + 100);

JSFSplashWin.document.open();
JSFSplashWin.document.clear();
JSFSplashWin.document.write("Foto");
JSFSplashWin.document.close();
JSFSplashWin.focus();
}

Odpowiedzi: 0

MiNos
Dodano:
25.01.2006 21:45:08
Komentarzy:
0
Strona 0 / 0