function followLinkInOpener(dest,closeThis) {
	window.opener.location=dest;
	if(closeThis) window.close();
	return false;
}

function openNewWin(dest,width,height) {
	window.open(dest,'newWin','width=' + width + ',height=' + height + ',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
	return false;	
}