function addGoogleBookmark() {
	var	a = window,
		b = document,
		c = encodeURIComponent,
		u = "http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=" + c( b.location ) + "&title=" + c(b.title),
		d = a.open( u, "bkmk_popup", "left=" + ((a.screenX||a.screenLeft)+10) + ",top=" + ((a.screenY||a.screenTop)+10) + ",height=420px,width=550px,resizable=1,alwaysRaised=1");

		a.setTimeout(function(){d.focus()},300);
}

$(document).ready(function(){
	$('a._blank').attr('target','_blank');
});
