function twitterBlogging(title, guid){
	loc = "http://" + document.domain + "/detail.do?guid=" + guid;

	title = title.replace(/&/g, "%26");
	title = title.replace(/ /g, "%20");
	loc = loc.replace(/&/g, "%26");
	loc = loc.replace(/#/g, "%23");
	loc = loc.replace(/ /g, "%20");

	url = "http://twitter.com/home?status=" + trim(title) + " - " + loc;

	window.open(url, "", "");
}
