hallo,
mit folgendem script öffne ich eine url in einem neuen fenster wenn ich auf einen button klicke. seid win xp oder ie neusere wird mir immer die statusleiste gezeigt obwohl ich das nicht will. hat jemand eine idee woran es liegen könnte?
das js:
<script>
var windowW=789
var windowH=568
var windowX = (screen.width/2)-(windowW/2);
var windowY = (screen.height/2)-(windowH/2);
var theURL = "index2.html"
var title = "die Seite"
var autoclose = true
s = "width="+windowW+",height="+windowH;
var IE4up = document.all?true:false
function openWin(){
//altes fenster
window.resizeTo(600,400)
window.moveTo(windowX,windowY)
//altes_fenster_ende
if (IE4up){
newWin = window.open("","noFrames",s)
newWin.blur()
window.focus()
newWin.resizeTo(windowW,windowH)
newWin.moveTo(windowX,windowY)
var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+theURL+"' scrolling=no>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>"
newWin.document.open();
newWin.document.write(frameString)
newWin.document.close()
} else {
newWin=window.open(theURL,"noFrames","scrollbars,"+s)
newWin.blur()
window.focus()
newWin.resizeTo(windowW,windowH)
newWin.moveTo(windowX,windowY)
}
newWin.focus()
if (autoclose){
window.onunload = function(){newWin.close()}
}
}
</script>
und auf dem bild:
<a href="javascript
danke
chaoscarl