function share() {
	this.myspace = function(title,content){
		var myspace = 'http://www.myspace.com/index.cfm?fuseaction=postto';
		var link = location.href;
		
		if (link.length == 0 || title.length == 0)
			return;

		myspace = myspace + '&u=' + encodeURIComponent(link);
		myspace = myspace + '&t=' + title;
		
		if ( typeof(content) == 'string')
			myspace = myspace + '&c=' + content;
		
		try {
			window.open(myspace, "myspace-link", "location=1,status=1,scrollbars=1,resizable=true");
		} catch(x) {
			window.location = myspace;
		}
		return false;
	}	
	
	this.facebook = function(title){
		var u = location.href;
		var t = title;
		window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436');
		return false;
	}
}

