// JavaScript Document

function ashOver(text) {
	if (text == '') {
		text = '...';
	} else {
		text='&nbsp;<strong>'+text+'</strong>';
	}
	document.getElementById('ashText').innerHTML=text;
}
function ashDo(was) {
	ashurl=encodeURIComponent(location.href);
	ashtitle=encodeURIComponent(document.title);
	switch(was) {		
		case 'digg':
			window.open('http://digg.com/submit?phase=2&url='+ashurl+'&title='+ashtitle);
			break;
		case 'delicious':
			window.open('http://del.icio.us/post?url='+ashurl+'&title='+ashtitle);
			break;
		case 'wong':
			window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+ashurl+'&bm_description='+ashtitle);
			break;
		case 'blinkList':
			window.open('http://www.blinklist.com/index.php?Action=Blink/addblink.php&Description=&Url='+ashurl+'&Title='+ashtitle);
			break;
		case 'yahoo':
			window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+ashurl+'&t='+ashtitle);
			break;
		case 'yigg':
			window.open('http://yigg.de/neu?exturl='+ashurl+'&exttitle='+ashtitle);
			break;	
		case 'furl':
			window.open('http://www.furl.net/storeIt.jsp?u='+ashurl+'&t='+ashtitle);
			break;
		case 'oneview':
			window.open('http://beta.oneview.de:80/quickadd/neu/addBookmark.jsf?URL='+ashurl+'&title='+ashtitle);			
			break;
		case 'folkd':
			window.open('http://www.folkd.com/submit/page/'+ashurl);
			break;
		case 'linkarena':	
			window.open('http://linkarena.com/bookmarks/addlink/?url='+ashurl+'&title='+ashtitle+'&desc=&tags=');
			break;
		case 'google': 		
			window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+ashurl+'&title='+ashtitle);
			break;
		case 'webnews': 		
			window.open('http://www.webnews.de/einstellen?url='+ashurl+'&title='+ashtitle);
			break;
	}
}