var message="Melding van www.fairbags.nl:\nHet is niet mogelijk om deze afbeelding te kopieren.\nWilt u een afbeelding van Fair Bags in uw bezit krijgen\nneem dan contact met ons op via 0413-490555 of info@fairbags.nl.";

///////////////////////////////////
function clickIE4(){
	if (event.button==2){
		alert(message);
	return false;
	}
}

function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}

if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}else if (document.all&&!document.getElementById){
	document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

function doPopup(img0,img1,img2,img3,img4){
	var emptyImage = "./images/trans.gif";
	if(img0 == '') return true;
	document.getElementById('popup-large').src = img0;
	
	if(img1 == undefined) img1 = emptyImage;
	document.getElementById('popup-thumb1').src=img1;
	if(img2 == undefined) img2 = emptyImage;
	document.getElementById('popup-thumb2').src=img2;
	if(img3 == undefined) img3 = emptyImage;
	document.getElementById('popup-thumb3').src=img3;
	//document.getElementById('popup-thumb4').src=img4;
	document.getElementById('productPopup').style.display="block";
}