function UniPop(Width, Height, ViewID, ObjID) {
	var w = 800, h = 600;
	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	var popW = Width, popH = Height;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	var theURL = "UniPop.cfm?v=" + ViewID + "&OID=" + ObjID;
	window.open(theURL, "UniPop", "scrollbars=yes,width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos);
}
function init() {
define('KWSearch', 'string', 'Search', 3);
}