$(function() {
	$(".newsLink, *[href$=share.php], *[href$=getUpdates.php], *[href*=oi.vresp.com], *[href*=swt_resourceNews]").click(function() {
		var height = 450;
		if (/getUpdates.php$/.test(this.href))
			height = 300;
		var p = '?';
		if (this.href.indexOf('?') != -1) p = '&';
		if (/share.php$/.test(this.href))
		{
			p += '?link=' + encodeURIComponent(location.href) + '&';
		}
		tb_show("", this.href + p + "KeepThis=true&TB_iframe=true&height=" + height + "&width=550");
		return false;
	});
});

