// JavaScript Document
$(document).ready(function(){
		$(".targetblank").click(function(){
			window.open(this);
			return false;
		});
	});
