/**
 *
 */
function openActionWindow(queryStr, width, height)
{
	var url = window.location;
	window.open(url + queryStr, 'dialog', 'height=' + height + ',width=' + width + ',menubar=no,left=' + ((screen.width - width) / 2) + ',top=' + ((screen.height - height) / 2) + ',scrollbars=yes');
}

/**
 *
 */
function reopenActionWindow(queryStr, width, height, curActionWindow)
{

	window.setTimeout("openActionWindow('"+queryStr+"', "+width+", "+height+")", 200);
	if (curActionWindow != null)
	{
		curActionWindow.close();
	}
}

/**
 *
 */
function openPrintWindow(queryStr, width, height)
{
	var url = window.location;
	window.open(url + queryStr, 'dialog', 'height=' + height + ',width=' + width + ',menubar=yes,left=' + ((screen.width - width) / 2) + ',top=' + ((screen.height - height) / 2) + ',scrollbars=yes');
}

