function showPop(sURL, iHeight, iWidth, bMin)
{
	var sFeatures = "height=" + iHeight + ",width=" + iWidth + ",top=10,left=10";
	if (bMin)
	{
		sFeatures += ",location=0,status=0,toolbar=0,scrollbars=1,resize=0";
	}

	oWin = window.open(sURL,"oWin",sFeatures);
	oWin.focus();
}

