//
// This file contains JS functions to handle the popup view image window.
//
// Author: rsacek
//


//
// Display editor window.
//
function displayPopupImageViewer(frameName, imageWebPath)
{
	var winWidth=700;
	var winHeight=500;
	var winY=(screen.height-winHeight)/2-100;
	var winX=(screen.width-winWidth)/2;
	
	var url = "/image_viewer/simple_popup/image_viewer.do?imagePath="+imageWebPath;
	
	var popupImageViewerWin = window.open(
					url,
					frameName,
					"top="+winY+",left="+winX+",width="+winWidth+",height="+winHeight+",toolbar=no,scrollbars=yes,resizable=yes,close=no,menubar=no");
	
	popupImageViewerWin.focus();
}


