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