/**
 *	Opent een afbeelding in een nieuw venster
 */
function openOriginalImage(image_id,gallery)
{
	width = 500;
	height = 300;
	var today=new Date();
	if(gallery)
		gallerytxt = '1';
	else
		gallerytxt = '0';
	page = '/cms/libraries/images/openimage.php?id='+image_id+'&gallery='+gallerytxt;
	openwin = this.open(page,"ctrlwindow" + today.getTime(),"width="+width+",height="+height+",toolbar=no,scrollbars=no,resizable=yes");
}

function openWindow(url)
{
		openwin = this.open(url,"ctrlwindow","width=300,height=300,toolbar=no,scrollbars=no,resizable=no");
		openwin.focus();
}
function openMailinglist(id)
{
	var url = '/nieuwsbrief.php?id='+id;
	openwin = this.open(url,"ctrlwindow","width=810,height=500,toolbar=no,scrollbars=yes,resizable=no");
	openwin.focus();
}

function showFoto(fotoID){

	hidefotowin();
	document.fotoID = fotoID;
	document.getElementById('fotoframe').src='http://www.construverre.nl/loadphoto.php?id='+fotoID;	


	document.getElementById('fotowin').className="fotowinvisible";

}

function hidefotowin(){
	document.getElementById('fotowin').className="fotowinhidden";

}

