// image_over-script origineel door VeeWee geschreven ;-)
function image_over(afbeelding){
	var bron = afbeelding.src;
	if (bron.indexOf('_over') == -1) {
		wissel = bron.replace(".gif", "_over.gif");
	} else {
		wissel = bron.replace("_over.gif", ".gif");
	}
	afbeelding.src = wissel;
}

function imgPopup(url,x,y,comment){   
	var venster = window.open("","","width=" + x + ",height=" + y + ",toolbar=no,location=no,directories=no,status=no,menubar=no");
	with(venster.document){
	open();
	write("<html>\n<head>\n<title>Foto's</title>\n</head>\n<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0>\n");
	write("<a href=\"#close\" onclick=\"javascript:self.close();\"><img src=\"" + url + "\" width=\"" + x + "\" height=\"" + y + "\" title=\"" + comment + "\" alt=\"\" border=\"0\"></a>\n");
	write("</body>\n</html>\n");
	close();
	}
}

function reportagePopup(){   
	var venster = window.open("","","width=" + 480 + ",height=" + 295 + ",toolbar=no,location=no,directories=no,status=no,menubar=no");
	with(venster.document){
	open();
	write("<html>\n<head>\n<title>Foto's</title>\n</head>\n<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0>\n");
	write("<a href=\"#close\" onclick=\"javascript:self.close();\"><object width=\"480\" height=\"295\"><param name=\"movie\" value=\"http://www.youtube.com/v/k-cyxyWlJy8&hl=nl_NL&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/k-cyxyWlJy8&hl=nl_NL&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"480\" height=\"295\"></embed></object></a>\n");
	write("</body>\n</html>\n");
	close();
	}
}


