// JavaScript Document

function openOpenerWindow(url)
{
	if(!window.opener || window.opener.closed)
	{
		option = "";
		option += "scrollbars=yes,location=yes,menubar=yes,resizable=yes,status=yes,toolbar=yes,directories=no";
		newWin = window.open(url, 'newWin', option);
	}
	else
	{
		window.opener.location.href = url;
	}
}


