
function popupAny(path, name, width, height, position) {
	if(position == "center") {
		lf= (window.screen.availWidth - width) / 2;
		tp = (window.screen.availHeight - height) / 2;
	} else if(position == "right") {
		lf = window.screen.availWidth - width - 10;
		tp= 0;
	} else {
		lf= 0;
		tp = 0;
	}

	window.open(path, name, "top="+tp+",left="+lf+",width="+width+",height="+height+",resizable=yes,scrollbars=yes,status=no,toolbar=no,directories=no,menubar=no");
}

