﻿ var pic;
 pic = new Array;
 pic[0] = "random/01.jpg";
 pic[1] = "random/02.jpg";
 pic[2] = "random/03.jpg";
 pic[3] = "random/04.jpg";
 pic[4] = "random/05.jpg";
 pic[5] = "random/06.jpg";
 pic[6] = "random/07.jpg";
 pic[7] = "thumbs/groenereiger.jpg";
 pic[8] = "thumbs/baikal.jpg";
 
 var now = new Date();
 var seed = now.getTime() % 0xffffffff;

 function rand(n) {
 seed = (0x015a4e35 * seed) % 0x7fffffff;
 return ( seed >> 16 ) % n;
 }

 var num = rand(9);

 function showImage_nl(){
 document.write("<a href=\"rest_index.html\"><img alt=\"Andere vogels\" src=\"" + pic[num] + "\" width=\"150\" border=\"0\"></a>");
 }
 
function showImage_uk(){
 document.write("<a href=\"rest_uk_index.html\"><img alt=\"Other birds\" src=\"" + pic[num] + "\" width=\"150\" border=\"0\"></a>");
 }
 
function openpicwindow(picture1, thisurl, width, height) {
var xWin = window.open('','','width=' + width + ',height=' + height + ',menubar=no,toolbar=no,personalbar=no,location=no,' + 'directories=no,status=no,scrollbars=no,resizable=no,dependent=yes,left=0,top=0,screenx=0,screeny=0'); 
	xWin.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
	xWin.document.write("<HTML><HEAD><TITLE>"+ picture1 +"</TITLE></HEAD><BODY bgcolor='white' style='margin: 0px; padding: 0px;'>");
    xWin.document.write("<div style='position:absolute; left: 0px; top: 0px; z-index:1'>");
    xWin.document.write("<IMG src='" + thisurl + "' BORDER='0'>");
    xWin.document.write("</div></BODY></HTML>");
 }

