var skyplayerBookmark = {};

skyplayerBookmark.submitBookmark = function(partUrl, name) {

	var fullUrl = "";
	var post_url = encodeURIComponent(document.location.href);
	var post_title = encodeURIComponent(document.title);
	
	switch(name) {
		case "title":
			var fullUrl = partUrl + post_url + "&title=" + post_title;
			break;
		case "t":
			var fullUrl = partUrl + post_url + "&t=" + post_title;
			break;
		case false:
			var fullUrl = partUrl + post_url;
			break;
	}
	
	window.open(fullUrl);

};