Zelf heb ik een script opgebouwd waarbij je op de pagina komt er een pop-up verschijnt.
Nu deze pop-up is belangrijk, maar wordt tegen gehouden door de meeste antivirussen.
Is er geen mogelijkheid dat wanneer je de website betreedt de pop-up er wel doorkomt?

Mvg,
Midas
Dat is niet te hopen. Dan zouden alle popupblockers voor niets zijn ontwikkeld. Advies: Geen popup gebruiken.
Wat is dan het alternatief voor een pop-up ?
Ik zou toch graag hebben dat automatisch de pagina verschijnt wanneer je de site betreed.
Met CSS een popup venster creeren, en deze als overlay op de pagina tonen. Met JS kan je deze dan weer verbergen.
Hum sorry, ik begrijp je antwoord niet echt.
Dit is mijn index :

<html>
	<head>
		<title>Taatu4you.com - Simply the best</title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE='JAVASCRIPT' TYPE='TEXT/JAVASCRIPT'>
 <!--
var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";win=window.open(mypage,myname,settings);
win.focus();}
// -->
</script>
	</head>

	<body bgcolor="#BDBDBD" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
	<body onLoad="NewWindow('http://myscript.taatusafe.com/flyer.htm','Taatu4you','680','430','center','front');">
	<!-- ImageReady Slices (Untitled-1) -->
		&nbsp;
		<table border="0" align="center" cellpadding="0" cellspacing="0">
			<tr>
				<td colspan="5" background="images/tatuu4you_01.gif" width="908" height="472"></td>
			</tr>
			<tr>
				<td background="images/tatuu4you_02.gif" width="35" height="93"></td>
				<td background="img/samen.png" width="122" height="93"></td>	
				<td background="images/tatuu4you_04.gif" width="599" height="93"></td>
				<td background="images/tatuu4you_05.gif" width="122" height="93">
				<?php
				include("goed.php");
				?>
				</td>	
				<td background="images/tatuu4you_06.gif" width="30" height="93"></td>
			</tr>
			<tr>
				<td colspan="5" background="images/tatuu4you_07.gif" width="908" height="60"></td>
			</tr>
		</table>
		&nbsp;
	<!-- End ImageReady Slices -->
	
	</body>
</html>


Wat hoort er verwijderd te worden ?
En welk erbij geplaatst ?
Sowieso nooit dingen automatisch tevoorschijn laten springen. Het schrikt je bezoekers af.
Hum oke,
Maar wat is dan het beste ?
Een button maken waarop ze klikken ?
Ja. Dan is de bezoeker weer "in control" en daar gaat het om.

Reageren