function post_this(targetHref, urlParam, titleParam) {
	var postUrl = targetHref + urlParam + '=' + location
	if (titleParam != '') {
		postUrl = postUrl + '&' + titleParam + '=' + escape(document.title)
	}
	window.open(postUrl,'LinkWindow')
	return false
}
