//SB-SocialBookmark;SBF-Field;SBL-Legend;SBM-Create
var SBM_MetaD;
var SBM_MetaT;
var metas=document.getElementsByTagName("meta");
var i;
for(i=0;i<metas.length;i++){
	if(metas[i].name=='description'){
		SBM_MetaD=metas[i].content;
	}else if(metas[i].name=='keywords'){
		SBM_MetaT=metas[i].content;
	}
}
var My_Add=document.getElementById('PagesScrollbereich');
var Add_SB=My_Add.appendChild(document.createElement('form'));
Add_SB.setAttribute('action','');
var Add_SBF=Add_SB.appendChild(document.createElement('fieldset'));
Add_SBF.setAttribute('id','SB_Fieldset')
var Add_SBL=Add_SBF.appendChild(document.createElement('legend'));
Add_SBL.setAttribute('id','SB_Legend')
Add_SBL.innerHTML='Diese Seite Bookmarken'
Make_SB('http://www.mister-wong.de/add_url/?action=addurl&bm_url='+encodeURIComponent(location.href)+'&bm_description='+SBM_MetaD,'Diese Seite zu Mister Wong hinzufügen','mister-wong.gif');
Make_SB('http://www.oneview.de/quickadd/neu/addBookmark.jsf?URL='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'oneview - das merk ich mir!','oneview.gif');
Make_SB('http://linkarena.com/bookmarks/addlink/?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&desc='+SBM_MetaD+'&tags='+SBM_MetaT,'LinkARENA','linkarena.ico');
Make_SB('http://www.alltagz.de/bookmarks/?action=add&address='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'alltagz','alltagz.png');
Make_SB('http://social-bookmarking.seekxl.de/?add_url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title),'Diese Seite zu Social-Bookmarks hinzufügen','seekxl.jpg');
Make_SB('http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title),'Delicious','del.icio.us.bmp');
Make_SB('http://www.favoriten.de/url-hinzufuegen.html?bm_url='+encodeURIComponent(location.href)+'&bm_title='+encodeURIComponent(document.title),'Diese Seite zu Favoriten.de hinzufügen','favoriten.gif');
function Make_SB(SBM_Page,SBM_Dienst,SBM_Image){
	var Add_SBM=Add_SBF.appendChild(document.createElement('a'));
	Add_SBM.innerHTML="&nbsp;";
	Add_SBM.setAttribute('title',SBM_Dienst);
	Add_SBM.setAttribute('href',SBM_Page);
	Add_SBM.setAttribute('target','_blank');
	Add_SBM.setAttribute('onmouseover',function StatusOn(){window.status=SBM_Dienst;return true;});
	Add_SBM.setAttribute('onmouseout',function StatusOff(){window.status='';return true;});
	var Add_SBM_Img=Add_SBM.appendChild(document.createElement('img'));
	Add_SBM_Img.setAttribute('src','img/bookmark/'+SBM_Image);
	Add_SBM_Img.setAttribute('alt',SBM_Dienst);
	Add_SBM_Img.setAttribute('border','0');
}