//	v0.1, mario@pizzinini.net, 2001-11-25/2002-03-25

function popWin(name, source, width, height, mode) {
	// title..		window name
	// source..	file
	// width..		width
	// height..	height
	// mode..		0 = default, 1 = centered, 2 = left top, 3 = right top, 4 = left bottom, 5 = right bottom, 6 = golden

	var para = "";
	var popWin;
	//window.status = popWin;

	//width += 20;
	//height += 20;

	para += "resizable=yes,scrollbars=yes,width="+width+",height="+height;
	//window.status = para;

	popWin = window.open(source, name, para);
	//window.title = source;
}