
function shareWindow(siteName){
	var sharedPage = window.location;
	if (siteName == "facebook"){
			
			t=document.title;
			window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(sharedPage)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
			
	}else if (siteName == "twitter"){
	
		window.open('http://twitter.com/?status='+encodeURIComponent(sharedPage),'sharer','toolbar=1,status=1');
	
	}else if (siteName == "friendfeed"){
			window.open('http://friendfeed.com/?url='+encodeURIComponent(sharedPage),'sharer','toolbar=1,status=1');
	}
}

function sharePage(siteName,sharedPage){
	if (siteName == "facebook"){
			
			t=document.title;
			window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(sharedPage)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
			
	}else if (siteName == "twitter"){
	
		window.open('http://twitter.com/?status='+encodeURIComponent(sharedPage),'sharer','toolbar=1,status=1');
	
	}else if (siteName == "friendfeed"){
			window.open('http://friendfeed.com/?url='+encodeURIComponent(sharedPage),'sharer','toolbar=1,status=1');
	}
}

