function PopUpWindow(url, height, width)
{
	if (typeof(popUpManager) != "undefined")
	{
		if (typeof(height) != "undefined" && typeof(width) != "undefined")
		{
			var attList = "status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,width=" + width + ",height=" + height + ",left=10,top=10";
			popUpManager.WindowOpen('NewWin', url, 'newWin', attList);
		}
		else
		{
			popUpManager.WindowOpen('NewWin', url, 'newWin', 'status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,left=10,top=10');
		}
	}
}

function PopUpWindowMin(url, height, width)
{
	if (typeof(popUpManager) != "undefined")
	{
		if (height != "" && width != "")
		{
			var attList = "status=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,width=" + width + ",height=" + height + ",left=10,top=10";
			popUpManager.WindowOpen('NewWin', url, 'newWin', attList);
		}
		else
		{
			popUpManager.WindowOpen('NewWin', url, 'newWin', 'status=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,left=10,top=10');
		}
	}
}
