var loading_image = new Image ();
var image_path = "http://www.contact-xxx.nl/img/";

function img_loaded () {
    document.images["ActivePic"].src = loading_image.src;
}

loading_image.onload = img_loaded

function ShowPic(elem, imgname, width, height) {
    if (document.getElementById("ActivePic").src == image_path + "view/" + imgname) {
        return;
    }

    current = document.getElementById("CurrentPic");
    if (current) { current.id = "foobar"; };
    elem.id = "CurrentPic";
    ahref = document.getElementById("ActivePicAhref");
    currentimg = document.getElementById("ActivePic").src;

    ahref.href = image_path + "normal/" + imgname;
    ahref.onclick = function () { return PicPopup(imgname, width, height);};
    loading_image.src = image_path + "view/" + imgname;
}

function PicPopup(sPicURL) {
    window.open( "/popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=50,WIDTH=50");
	return false;
}

function disableForm(theform, msg) {
	window.setTimeout('document.form1.submitbutton.disabled=true', 10);
	document.form1.submitbutton.value=msg;
	return true;
}