/*
	(C) 2007 Chuug. All rights reserved.
	twitthis.com
*/
/*
var TwitThis = {
	pop : function (id) {
		window.open("http://twitthis.com/twit?url="+encodeURIComponent(location.href)+"#"+id+"&title="+((document.title) ? encodeURIComponent(document.title.replace(/^\s*|\s*$/g,'')) : ""), "TwitThisPop", "width=600, height=500, location, status, scrollbars, resizable");
	}
}
*/
/* to get the title add another parameter*/
function TwitPopup (id, title) {
	window.open("http://twitthis.com/twit?url="+encodeURIComponent(location.href + "#" + id) + "&title=" + encodeURIComponent(title.replace(/^\s*|\s*$/g,'')), "TwitThisPop", "width=600, height=500, location, status, scrollbars, resizable");
}
/*
var TwitThis = {
	pop : function (id) {
	var mySplitResult = id.split("::");
		window.open("http://twitthis.com/twit?url="+encodeURIComponent(location.href+"#"+mySplitResult[0])+"&title="+mySplitResult[1], "TwitThisPop", "width=600, height=500, location, status, scrollbars, resizable");
	}
}
*/