function NewWindow(height,width,url) 
{
	window.open(url,"ShowProdWindow","menubars=0,scrollbars=1,resizable=1,height="+height+",width="+width); 
} 
function snl_click(social_utility) 
{
	u=location.href;
	t=document.title;

	if(social_utility == "facebook")
	{
		window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	}
	if(social_utility == "digg")
	{
		window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t));
	}

	if(social_utility == "delicious")
	{
		window.open('http://del.icio.us/post?v=2&url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t));
	}

	if(social_utility == "reddit")
	{
		window.open('http://reddit.com/submit?url='+encodeURIComponent(u)+'&title='+encodeURIComponent(t));	
	}

	if(social_utility == "newsvine")
	{
		window.open('http://www.newsvine.com/_tools/seed&save?u='+encodeURIComponent(u)+'&T='+encodeURIComponent(t));
	}
	return false;
}

