function resq(u,n,s,k,l,b,d)	//ヘルプウインドウのポップアップ(u=url , n=windowname , s=windowstatus , k=switch , l=sslflg , b=blflg , d=dummy)
{
//window status定義（サイズを変えたいなら引数に入力）
	if(s=="default")
	{
		s="width=550,height=400,resizable=yes,location=no,menubar=no,status=no,scrollbars=yes";
	}
	else
	{
		s=s;
	}

//kを見て何かあれば分岐（kはドキュメントの頭から1で始まる連番）
	if(k.length>0)
	{
		k-=0;
		if(k!=0)
		{
			if(k<10)
			{
				u="/mailorder/guide/guide/cgihlp/"+u+"_help0"+k+".html";
			}
			else
			{
				u="/mailorder/guide/guide/cgihlp/"+u+"_help"+k+".html";
			}
		}
	}
	else
	{
		u="/mailorder/guide/guide/cgihlp/"+u+"_help.html";
	}

//sslflgを見る。httpで行くかhttpsで行くかその場の流れに委ねる。
	if(l=="1" || l==1)
	{
		u="https://www.toranoana.jp"+u;
	}
	else if(l=="0" || l==0)
	{
		u="http://www.toranoana.jp"+u;
	}
	else
	{
		u=u;
	}

//blflgを見る。
	if(b=="1" || b==1)
	{
		u=u.replace("\/mailorder\/", "\/bl\/");
	}

//実行。
	if (n!=-1){
		window.open(u,n,s);
	}else{
		window.n.location.href=u;
	}
}

