PHP interesse |
|
Zoiets:
<html>
<head>
<script language="JavaScript">
function KlotePopUps(){
For(var x = 1; x <= 10; x++){
window.open('http://www.jouwwebsite.nl/popup.html',x,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=200,height=200');
}
}
</script>
* hier de rest van je head *
</head>
<body onLoad="KlotePopUps();">
* hier de rest van je body *
</body>
</html>
<script language="JavaScript"> function KlotePopUps(){ For(var x = 1; x <= 10; x++){ window.open('http://www.jouwwebsite.nl/popup.html',x,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=200,height=200'); } } * hier de rest van je head * <body onLoad="KlotePopUps();"> * hier de rest van je body *
|