function xOpenWin( a, win, width, height, params ) {
	var href = a.href;
	if (href.length > 0) {
		if (params == undefined) params = '';
		var nparams = 'location=0,menubar=0,personalbar=0,status=0,toolbar=0,directories=0,dependent=1,alwaysRaised=1,scrollbars=1';
		nparams += nparams + ',' + params + ',width=' + width + ',height=' + height;

		if (window.open(href, win, nparams)) return(false);
	}

	return(true);
}