var pollWindow = null
function newwindow(thewin)
{	
	if (! pollWindow || pollWindow.closed)
	{
  pollWindow = window.open(thewin,"tcgpoll","toolbar,resizable,scrollbars,dependent,width=450,height=400");
	}else
	{
		pollWindow.focus();
	}
}
var ttWindow = null
function picwindow(thewin)
{	
	if (! ttWindow || ttWindow.closed)
	{
  ttWindow = window.open("/community/show_photo/?p="+thewin,"tcgpic","toolbar,resizable,scrollbars,dependent,width=500,height=450");
	}else
	{
		ttWindow.focus();
	}
}
