$(document).ready(function () {
	$("a.openWindow").bind("click", function () {
		window.open($(this).href());
		return false;	
	});
});