// javafunctie om het plaatje in een pop_up weer te geven. Deze pop_up past zich aan de groote van het plaatje.

var imgHeight, imgWidth;
var loadDocument = false;

function PhotoAlbumPopup(Plaatje,Tekst,PageTitle)
{
	NewWindow=window.open("","Nieuw","HEIGHT=1024,WIDTH=768,scrollbars=yes,resizable=no,center,center");
	NewWindow.document.write ("<HTML><HEAD><TITLE>");
	NewWindow.document.write (PageTitle); 
	NewWindow.document.write ("</TITLE>");
	NewWindow.document.write ("</HEAD>");
	NewWindow.document.write ("<BODY BGCOLOR='#000000' text='#FFFFFF' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=self.focus()>");
	NewWindow.document.write ("<font size=1 face='Verdana, Arial, Helvetica, sans-serif'>");
	NewWindow.document.write ("<CENTER>");
	NewWindow.document.write ("<IMG style='cursor:hand' onClick='javascript: window.close();' ID='foto' SRC='");
	NewWindow.document.write (Plaatje);
	NewWindow.document.write ("' >");
	while (!loadDocument)
	{
	getResolution();
	}
	loadDocument=false;
	NewWindow.resizeTo(imgWidth,imgHeight);
	NewWindow.document.close();
	}
	function getResolution()
	{
	if (NewWindow.document.images[0].height > 40) {
	imgHeight = NewWindow.document.images[0].height + 75;
	imgWidth = NewWindow.document.images[0].width + 30;
		if (imgHeight > screen.height){
		imgHeight = screen.height - 30;}
		if (imgWidth > screen.width){
		imgWidth = screen.width;}
		loadDocument=true; }
	}
	function hidestatus(){
	window.status=''
	return false
}