<!--

	function popUp(url, windowName, height, width) {
		var wnd = window.open(url, windowName, "height="+height+",width="+width+",status=no,menubar=no,resizable=no,directories=no,locationbar=no");
		wnd.focus();
	}

	function popUpScroll(url, windowName, height, width) {
		var wnd = window.open(url, windowName, "height="+height+",width="+width+",status=no,menubar=no,resizable=no,directories=no,locationbar=no,scrollbars=yes");
		wnd.focus();
	}

	function popUpTimeOut(url, windowName, height, width, msec) {
		var tid = window.setTimeout("popUp("+url+","+windowName+","+height+","+width+")",msec);
	}

	function imagePick(target_field, target_preview, _x, _y) {
		var pickerWindow = popUp("webutils/image_picker.php?trgt_fld="+target_field+"&trgt_prw="+target_preview+"&_x="+_x+"_y="+_y, "pickerWindow", "120", "320");
	}

	function filePick() {
		var pickerWindow = popUp("webutils/file_picker.html", "pickerWindow", "200", "100");
	}

//-->
