var openLinkInPopup = function(link, width) {
	if (typeof width === 'undefined') width = 632;
	var pop = window.open(link.get('href'), link.get('id'), 'width=' + width + ',height=570,left=50,top=50,screenX=50,screenY=50,scrollbars=yes,location=no,status=no,personalbar=no,resizeable=yes,toolbar=no,menubar=no,dependent=no,directories=no');
	if ((typeof pop !== 'undefined') && (pop !== null)) {
		if (typeof pop.focus === 'function') pop.focus();
	}
};