/**************
* Raw Replay
* replay.js
* Lovingly handcrafted by Martin Kuplens-Ewart - http://www.thoughtguy.com
*
/**************/
$(document).ready(function()
{
	$('a.newWindow').click(function () {
		var linkUrl = $(this).attr('href');
		window.open(linkUrl,'');
		this.blur();
		return false;
	});
});