﻿function gfPopup(sURL,sTarget,iWidth,iHeight,bPopUpType) {
	var sWH = "";
	var sPop = "";

	if (iWidth > 0 && iHeight > 0)
	{
		var iLeft = (screen.width / 2) - (iWidth / 2);
		var iTop = (screen.height / 2) - (iHeight / 2);
		sWH = "left=" + iLeft + ",top=" + iTop + ",height=" + iHeight + ",width=" + iWidth + ","
	}
	if (bPopUpType) { sPop = "status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes"; }

	window.open(sURL,sTarget,sWH + sPop);
}
function selectAllOf(txtObj)
{
	if (txtObj.select) { txtObj.select(); }
}