/**
 *	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");
}
