MySQL interesse |
|
Toevallig laatste gemaakt
<html>
<head>
<script type="text/javascript" Language="JavaScript">
var mywindow = new Array();
onload = openwindows();
function openwindows()
{
var url = new Array();
url[0] = 'http://google.nl/';
for(i = 0; i < url.length; i++)
{
openwindow(url[i] , i);
}
setTimeout('closewindow("'+url.length+'")',10000);
}
function openwindow(url, teller)
{
mywindow[teller] = window.open(url,'','scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}
function closewindow(url)
{
for(i=0;i<url;i++)
{
mywindow[i].close();
}
openwindows();
}
</script>
</head>
<body>
</body>
</html>
<script type="text/javascript" Language="JavaScript"> var mywindow = new Array(); onload = openwindows(); function openwindows() { var url = new Array(); url[0] = 'http://google.nl/'; for(i = 0; i < url.length; i++) { openwindow(url[i] , i); } setTimeout('closewindow("'+url.length+'")',10000); } function openwindow(url, teller) { mywindow[teller] = window.open(url,'','scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no'); } function closewindow(url) { for(i=0;i<url;i++) { mywindow[i].close(); } openwindows(); }
|