/***
	Közösségi megosztás
	Alfi
	2010.06.10.
***/

function sharing(service) {
	u=location.href;
	t=document.title;
	switch (service) {
		case 1:
			popup='http://iwiw.hu/pages/share/share.jsp?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t);
			name='iwiwshare';
			params='toolbar=0,status=0,location=1, width=650,height=600,scrollbars=1';
			break;
		case 2:
			popup='http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t);
			name='fbshare';
			params='toolbar=0,status=0,location=1, width=650,height=250,scrollbars=1';
			break;
		case 3:
			popup='http://twitter.com/home?status='+encodeURIComponent(t)+' - '+encodeURIComponent(u);
			name='twshare';
			params='toolbar=0,status=0,location=1, width=800,height=500,scrollbars=1';
			break;
	}
	window.open(popup,name,params);
	return false;
}

Event.observe(window,'load',function() {
	Event.observe('share_iwiw','click',function() {
		sharing(1);
	});
	Event.observe('share_facebook','click',function() {
		sharing(2);
	});
	Event.observe('share_twitter','click',function() {
		sharing(3);
	});
	
});