/* SocialBookmarks.js version 0.1
*
*  Aufrufe fuer social bookmarks
*
*  history: 	03.04.2009 tbraun initial revision;
*		18.01.2010 tbraun added function addStudiVZ
*/
function addTwitter(u, t) {
	//u=encodeURIComponent(u);
	u='http://www.dasding.de';
	t=encodeURI(t);
	window.open('http://twitter.com/home?status='+t+' '+u,'twitter','toolbar=0,status=0, scrollbars=yes,width=850,height=600');
	return false;
}

function addFacebook(u, t) {
 	u=encodeURIComponent(u);
	t=encodeURI(t);
	window.open('http://www.facebook.com/sharer.php?u='+u+'&t='+t,'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
 }

function addMySpace(u, t, c, d) {
	c='<a href="'+u+'" target="_blank"><img style="padding: 5px 5px 5px 5px; float:left; width: 100px;" src="'+c+'" border="0"></a><br>'+d+'<br>Mehr Infos gibts auf <a href="http://www.dasding.de" target="_blank">www.dasding.de</a>';
	u=encodeURIComponent(u);
	t=encodeURI(t);
	window.open('http://www.myspace.com/index.cfm?fuseaction=postto&u='+u+'&t='+t+'&l=2&c='+c,'myspace','toolbar=0,status=0,width=800,height=600');
	return false;
}

function addMySpaceVideo(u, t, c, d) {
  t=encodeURI(t);
  c='<object height="245" width="354" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cabversion=6,0,40,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="high" name="quality"/><param value="http://www.dasding.de/ext/facebook/player/player.swf?videoXML='+c+'" name="src"/><embed height="245" width="354" quality="high" src="http://www.dasding.de/ext/facebook/player/player.swf?videoXML='+c+'" type="application/x-shockwave-flash"/></object><br>'+d+'<br>Mehr Infos gibts hier: <a href="'+u+'" target="_blank">'+t+'</a>';
	u=encodeURIComponent(u);
	window.open('http://www.myspace.com/index.cfm?fuseaction=postto&u=&t='+t+'&l=2&c='+c,'myspace','toolbar=0,status=0,width=800,height=600');
	return false;
}
	
function addMrWong(u, t) {
	u=encodeURIComponent(u);
	t=encodeURI(t);
	window.open('http://www.mister-wong.de/add_url/?action=addurl&%20bm_url='+u+'&bm_description='+t,'misterwong');
	return false;
 }

function addDelicious(u, t, d) {
	u=encodeURIComponent(u);
	t=encodeURI(t);
	d=encodeURI(d);
	window.open('http://del.icio.us/post?noui&amp;v=4&amp;jump=close&amp;url='+u+'&amp;title='+t+'&amp;notes='+d,'delicious');
	return false;
}
function addStudiVZ(u, t) {
	t=encodeURI(t);
 	u=encodeURIComponent(u);
 	window.open('http://www.studivz.net/Suggest/Selection/?u='+u+'&desc='+t+'&prov=www.dasding.de');
 	return false;
} 
