//サブウィンドウ

	var subopen = null
	function Winopen1()
		{	if (navigator.userAgent.indexOf("MSIE 4") != -1)
				{	subopen=window.open("","sw01","width=670,height=630,left=0,top=0,toolbar=0,location=1,directories=0,scrollbars=1,resizable=1");
					if (!subopen.opener) subopen.opener=self;	}
			else
				{	subopen=window.open("","sw01","width=670,height=630,left=0,top=0,toolbar=0,location=1,directories=0,scrollbars=1,resizable=1");
					if (!subopen.opener) subopen.opener=self;
					if (window.focus) subopen.focus();	}	}
    function Winopen2()
		{	if (navigator.userAgent.indexOf("MSIE 4") != -1)
				{	subopen=window.open("","sw02","width=470,height=630,left=0,top=0,toolbar=0,location=0,directories=0,scrollbars=1,resizable=1");
					if (!subopen.opener) subopen.opener=self;	}
			else
				{	subopen=window.open("","sw02","width=470,height=630,left=0,top=0,toolbar=0,location=0,directories=0,scrollbars=1,resizable=1");
					if (!subopen.opener) subopen.opener=self;
					if (window.focus) subopen.focus();	}	}
function parentOpen(url) {
	if((opener)&&(!opener.closed)){
		opener.location.href=url;
		opener.focus();
	}else{
		window.open(url,'','toolbar=1,location=1,directories=1,scrollbars=1,resizable=1,status=1');
	}
}
					

