/* Developed by Dubbele:punt Design - www.dubbelepunt.com */

// swap images
function swap(target, img){
	if(document.images[target]){
		document.images[target].src = img;
	}
}

// open popup window
function photoPopup(url){
	window.open(url, 'popup', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=500, height=500');
}

// open print popup
function printPopup(url){
	window.open(url, 'popup', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=500, height=500');
}

// show/hide DIV
function showhide(target){
	layer_ref = document.getElementById(target);
	layer_ref.style.display = (layer_ref.style.display == 'block') ? 'none' : 'block';
}

/* Developed by Dubbele:punt Design - www.dubbelepunt.com */



