var url = window.document.location;
var title = window.document.title;
var favtit = "voeg toe aan favorieten"
var isIE = (navigator.appName.indexOf("Microsoft") > -1);
if (!isIE) favtit = "sleep naar bookmarks";

function fav(){
	if (isIE) {window.external.AddFavorite(url,title)} else {alert('Sleep het aangeklikte icoontje naar de bookmark-balk van uw browser!')}
}
function soc(jn){
	a = document.getElementById('alg');
	if (jn) {a.style.width='500px';} else {a.style.width='120px';};
}

function pdf(){location.href='/post/pdf.aspx?url=' + url;}
	
var r = '';
r += '<div id="alg"' + (isIE ? ' class="ie"' : '') + '>';
r += '<a href="javascript:window.print()" id="print" title="printen"><span>print</span></a>';
r += '<a href="javascript:pdf()" id="pdf" title="opslaan als pdf"><span>pdf</span></a>';
r += '<a href="#" id="mail" onclick="reageer();return false" title="reageren of doorsturen"><span>mailen</span></a>';
r += '<a href="' + url + '" onclick="fav(); return false;" id="fav" title="' + favtit + '"><span>' + title + '</span>&nbsp;&nbsp;&nbsp;&nbsp;</a>';
r += '<div onmouseover="soc(1)" onmouseout="soc(0)"><a id="share"><span>delen</span></a>';
	r += '<a id="Delicious" target="_blank" href="http://www.delicious.com/post?url=' + escape(url) + '&title=' + escape(title) + '" title="Delicious"></a>';
	r += '<a id="Twitter" target="_blank" href="http://twitter.com/home?status=' + escape(title + ' ' + url) + '" title="Twitter"></a>';				
	r += '<a id="Hyves" target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=' + escape(title) + '&text=' + escape(url) + '&type=12" title="Hyves"></a>';		
	r += '<a id="Google" target="_blank" href="http://www.google.com/bookmarks/mark?op=add&bkmk=' + escape(url) + '&title=' + escape(title) + '" title="Google Bookmarks"></a>';
	r += '<a id="Msn" target="_blank" href="http://favorites.live.com/quickAdd.aspx?url=' + escape(url) + '&title=' + escape(title) + '" title="Msn/Live Favorite"></a>';				
	r += '<a id="Nujij" target="_blank" href="http://nujij.nl/jij.lynkx?t=' + escape(title) + '&u=' + escape(url) + '" title="Nujij"></a>';	
r += '</div>';				
r += '</div>';


document.write(r);

/*$('#mail').colorbox({href:"/post/mail.htm", width:"550px"}, function(){mailform();});*/

function reageer(){
	$.nyroModalManual({url: '/post/mail.htm'}); 
}

