// $Id: popup_image.js,v 1.4.2.1 2006/09/13 14:03:29 max Exp $
function popup_text(section, title, max_x, max_y, x_offset, y_offset, get) {

	max_x = parseInt(max_x);
	max_y = parseInt(max_y);

	if (!max_x)
		max_x = 160;

	if (!max_y)
		max_y = 120;

	if (!x_offset)
		x_offset = 200;

	if (!y_offset)
		y_offset = 150;


	target = '/popup_text.php?section='+section+'&height='+max_y;
	if (get) {target = target + get} ;
	parameters = 'screenX='+x_offset+
				',screenY='+y_offset+
				',width='+max_x+
				',height='+max_y+
				',toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no,direction=no';

	return window.open(target,'helpwindow',parameters);
}

