//
// Javascript function library for image functions
// Copyright (c) 1999-2005 - Online-Art Corp.
// Arjan Klunder
// Last update: 2006-06-16 Arjan Klunder
//

var currentWnd = null;

function showImageInPopup(imageId)
{
	if(currentWnd != null)
		currentWnd.close();
	currentWnd = window.open('viewimage&id='+imageId, 'ImageViewer', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=50,height=50');
	
	currentWnd.focus();
	
	currentWnd.onblur = closePopup;
}

function closePopup()
{

	currentWnd.close();
}