<!--

function newWindow(href, target, width, height) {

	if (height > 500) {

		var height = 500;

	}

	var top = (document.body.clientHeight - height) / 2;
	var left = (document.body.clientWidth - width) / 2;
	top = Math.round(top);

	var newWin = open(href, target, 'toolbar=no, width=' + (width - 2) + ', height=' + (height - 2) + ', top=' + top + ', left=' + left + ', scrollbars=yes, status=yes, resizable=yes');

	return false;

}

//-->
