// JavaScript Document
var newWindow;

function popup_win(id)
{
	if (!newWindow || newWindow.closed)
	{
		newWindow = window.open('/text.php?id='+id, '', 'resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no,menubar=no,left=100,top=100,width=720,height=800');
	}
	else
	{
		newWindow.location = '/text.php?id='+id;
	}
	newWindow.focus();
	return false;
}
