var selected = new Array();

function GetSelected(htmlLink) {
    if (selected.length > 0)
        window.location = htmlLink.href + '&kenteken=' + selected.join(','); else
        window.location = htmlLink.href; return false;
}

var noImageSmall = "images/nophoto_small.jpg"; var noImageNormal = "images/nophoto_big.jpg"; 

function pload(obj, iSize) {
    if (obj.src != noImageSmall || obj.src != noImageNormal) {
        if (iSize == 1)
            obj.src = noImageSmall; else
            obj.src = noImageNormal; return true;
    }
}

function changeFoto(source, destination) {
    destination.src = source.src.replace("thumbs", "fotos")
}

// Image viewer code
function showImg(source, dest) {
    var str = source.src;
    if (str.match("thumbs")) {
        str = str.replace("thumbs", "fotos");
        document.getElementById(dest).src = str;
    }
}