﻿
// Opent in een nieuw venster
function vergroot(plaatje)
{
    window.open('ShowImage.htm?imagesrc=' + plaatje, '_blank', 'resizable=1, scrollbars=0, menubar=0, status=0, width=1024, height=768');
    return false;
}

// Opent in een nieuw venster 
function VergrootMetHoogte(plaatje, hoogte)
{
    
    window.open('ShowImage.htm?imagesrc=' + plaatje, '_blank', 'resizable=1, scrollbars=1, status=0, menubar=0, width=540, height=' + hoogte);
    return false;
}