/*
Make Short Url
*/

function make_tweet_url(str, url) {
	var req_url = 'http://ustweet.net/module/short_url';
	//alert('check1');
	$.post(
		req_url,
		{"url": url},
		function(data,status){
			if(status == 'success'){
				if (data.url == '') { alert('URLの短縮化に失敗'); }
				url = 'http://twitter.com/home?status=' + str + '+' + data.url;
				window.open(url);
				return false;
			}else{
				alert('URLの短縮化に失敗');
			}
		},
		'json'
	);
}

