
function showMoreBookmarks( t )
{
var bm = document.getElementById('morebookmarks');
if (bm)
 {
 if (bm.style.display == 'block')
  {
  bm.style.display = 'none';
  }
 else
  {
  bm.style.display = 'block';
  }
 }
}

function createBookmark( social )
{
sendUrl = document.location.href;
sendTitle = document.title;
if (social=='twitter')
 { document.write( "<a href='http://twitter.com/home?status="+ sendUrl+"' target='_new' class='twitter'></a>");}
	
if (social=='google')
 { document.write( "<a href='http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+sendUrl+"&title="+sendTitle+"'  target='_new' class='google'></a>");}
	
if (social=='facebook')
 { document.write( "<a href='http://www.facebook.com/share.php?v=4&src=bm&u="+sendUrl+"&t="+sendTitle+"'  target='_new' class='facebook'></a>");}
	
if (social=='myspace')
 { document.write( "<a href='http://www.myspace.com/Modules/PostTo/Pages/?u=" +sendUrl+"&t="+sendTitle+"'  target='_new' class='myspace'></a>");}
 
if (social=='hyves')
 { document.write( "<a href='http://www.hyves.nl/profilemanage/add/tips/?name="+sendTitle+"&text="+sendUrl+"&rating=5'  target='_new' class='hyves'></a>");}
 
if (social=='nujij')
 { document.write( "<a href='http://nujij.nl/jij.lynkx?t="+sendTitle+"&u="+sendUrl+"'  target='_new' class='nujij'></a>");}

if (social=='linkedin')
 { document.write( "<a href='http://www.linkedin.com/shareArticle?mini=true&url="+sendUrl+"&title="+sendTitle+"'  target='_new' class='linkedin'></a>");}
 
if (social=='delicious')
 { document.write( "<a href='http://del.icio.us/post?url=" + sendUrl + "&title=" + sendTitle+"'  target='_new' class='delicious'></a>");}
 

 	
}

