function xpsSocialBMTP(fx_network) {
	if (fx_network=='twitter') {
		window.location='http://twitter.com/home?status=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='technorati') {
		window.location='http://technorati.com/faves?add=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='stumbleupon') {
		window.location='http://www.stumbleupon.com/submit?url=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='reddit') {
		window.location='http://reddit.com/submit?url=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='linkedin') {
		window.location='http://www.linkedin.com/shareArticle?mini=true&url=&source=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='kirtsy') {
		window.location='http://www.kirtsy.com/submit.php?url=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='google') {
		window.location='http://www.google.com/bookmarks/mark?op=edit&bkmk=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='facebook') {
		window.location='http://www.facebook.com/share.php?u=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='mailto') {
		window.location='mailto:?subject=Check out what I found!&body=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='digg') {
		window.location='http://digg.com/submit?phase=2&url=' + encodeURIComponent(document.location.href);
	}
	if (fx_network=='delicious') {
		window.location='http://del.icio.us/post?url=' + encodeURIComponent(document.location.href);
	}
}

