
function ShowPopup(WindowURL,WindowWidth,WindowHeight)
{
//(c) Lomtec.com 2001

WindowFeatures = "left=0,top=0,width=" + WindowWidth + ",height=" + WindowHeight + "toolbar=no," + "location=no," + "directories=no," + "status=no," + "menubar=no," + "scrollbars=no," + "resizable=no,";

if (typeof(NewWindow) == "object")
	if ( typeof(NewWindow.top) == "object")
		NewWindow.close();

NewWindow = window.open( WindowURL , 'WindowPopup', WindowFeatures);
NewWindow.focus();
return(false);

}

function ShowImage(ImageID)
{
	MainURL = 'ShowImagePopup.cfm?ImageID=' + ImageID;
	ShowPopup(MainURL,670,580);
}
