Hallo Leute,
wollte ein popup beim Laden einer Seite aufgehen lassen.
Irgendwie funxt das zwar auf dem Rechner so wie ich es gemacht habe, aber
online halt nicht.
Stell ma den Code der Seite gekürzt ein - würd mich freuen wenn jemand drüberschauem könnte.
Danke im Vorraus
Code
<head>
<title>(Type a title for your page here)</title>
<meta name="GENERATOR" content="Arachnophilia 4.0">
<meta name="FORMATTER" content="Arachnophilia 4.0">
<script language='javascript'>
<!--
/********************************************
AUTHOR:[url]WWW.CGISCRIPT.NET.LLC[/url]
URL:http://www.cgiscript.net
Use the code for FREE but leave this message intact
Download your FREE CGI/Perl Scripts today!
( http://www.cgiscript.net/scripts.htm )
****************************************************/
var PopupWindow=null;
function Popup(mypage,myname,w,h,pos,infocus){
if(pos=='random'){
LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=='center'){
LeftPosition=(screen.width)?(screen.width-w)/2:100;
TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!='random') || pos==null){LeftPosition=50;TopPosition=200;}settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
PopupWindow=window.open('',myname,settings);
if(infocus=='front'){PopupWindow.focus();PopupWindow.location='popup.html';}
}
//-->
</script>
</head>
<body style="background-image:url(haupt/haupt.jpg); background-attachment:fixed;" text="#000000" link="no" vlink="no" alink="no" marginwidth="0" topmargin="0" marginheight="0">
<body onLoad="Popup('popup.html','Popup','630','220','','front');">
Alles anzeigen