/* Functions for Noorderparkkamer 
 * Created by:	01.04.2008 - Edgar Vijgeboom (Parkers)
 */

function openWindow(window1,window2) {
		$(window1).show();
		$(window2).show();
		return false;
	}
	
function closeWindow(window1,window2) {
		$(window1).hide();
		$(window2).hide();
		return false;
	}
	
function getImage(id,image) {
		$(id).update('<img src="footage/'+image+'" width="518" />');
	}
	
function showFoto(image) {
    $('lightbox_contents').update('<img src="footage/'+image+'" width="518" />');
    displayLightbox('show');
  }
  
  
/* Script voor het selecteren van filters bij projecten tags */
function selectFilter() {
 	var filterid = $('tagid').options[$('tagid').selectedIndex].value;
 	if (filterid) {
 		location.href = "index.php?pageid=projecten&filterid="+filterid;
 	}
}
	

