

		//===================================================================================
		// Social Bookmarks
		// version 2.0
		//
		// Copyright-Notice:
		// (C) 2006/07 by Grizzly Werbeagentur GmbH - http://www.grizzly.cc
		//
		// This script can be used free of charged as long as the received code remains
		// completly unchanged! Sites which change the code in any way will get blacklisted!
		//
		//===================================================================================

		var url_escaped = encodeURIComponent(location.href);
var title_escaped = encodeURIComponent(document.title);
var socialbookmarks_bookmarkwith = "Bookmark bei";

//----------- gamebuzz ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'gamebuzz\');\" title=\"" + socialbookmarks_bookmarkwith + ": linkarena\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/gamebuzz.png\" name=\"gamebuzz\" border=\"0\" id=\"gamebuzz\"></a>");

//----------- wong ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'wong\');\" title=\"" + socialbookmarks_bookmarkwith + ": wong\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/wong.gif\" name=\"wong\" border=\"0\" id=\"wong\"></a>");

//----------- yigg ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'yigg\');\" title=\"" + socialbookmarks_bookmarkwith + ": yigg\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/yigg.gif\" name=\"yigg\" border=\"0\" id=\"yigg\"></a>");

//----------- del ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'del\');\" title=\"" + socialbookmarks_bookmarkwith + ": del\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/del.gif\" name=\"del\" border=\"0\" id=\"del\"></a>");

//----------- google ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'google\');\" title=\"" + socialbookmarks_bookmarkwith + ": google\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/google.gif\" name=\"google\" border=\"0\" id=\"google\"></a>");

//----------- webnews ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'webnews\');\" title=\"" + socialbookmarks_bookmarkwith + ": webnews\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/webnews.gif\" name=\"webnews\" border=\"0\" id=\"webnews\"></a>");

//----------- yahoo ----------
document.writeln("<a href=\"#\" onClick=\"return social_add(\'yahoo\');\" title=\"" + socialbookmarks_bookmarkwith + ": yahoo\" onMouseOver=\"\" onMouseOut=\"\"> <img src=\"/social-bookmarking/yahoo.gif\" name=\"yahoo\" border=\"0\" id=\"yahoo\"></a>");


				function social_add(name)
		{
			switch (name) {	case'del':
					openWin('http://del.icio.us/post?v=2&url='+url_escaped+'&notes=&tags=&title='+title_escaped);
					break;	case'google':
					openWin('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+url_escaped+'&annotation=&labels=&title='+title_escaped);
					break;	case'gamebuzz':
					openWin('http://gamebuzz.de/node/add/buzz?url='+url_escaped+'&title='+title_escaped+'');
					break;	case'webnews':
					openWin('http://www.webnews.de/einstellen?url='+url_escaped+'&title='+title_escaped);
					break;	case'wong':
					openWin('http://www.mister-wong.de/index.php?action=addurl&bm_url='+url_escaped+'&bm_notice=&bm_description='+title_escaped+'&bm_tags=');
					break;	case'yahoo':
					openWin('http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+title_escaped+'&d=&tag=&u='+url_escaped);
					break;	case'yigg':
					openWin('http://yigg.de/neu?exturl='+url_escaped);
					break;	}
return true;

		}

function openWin(url)
{
	w=window.open(url);
	w.focus();
	setTimeout('w.focus()',1000);
}

