function displayNewWindow(pageName, width, height, url, scrollable, resizable, toolbar) {
	var win = window.open(url, pageName, 'width=' + width + ',height=' + height + ',scrollbars=' + scrollable + ',resizable=' + resizable + ',toolbar=' + toolbar);
	win.focus();
	return false;
}

function popupLink(obj, pageName, width, height,scrollable, resizable, toolbar) {
	var win = window.open(obj.href, pageName, 'width=' + width + ',height=' + height + ',scrollbars=' + scrollable + ',resizable=' + resizable + ',toolbar=' + toolbar);
	win.focus();
	return false;
}

