// Ref.  copyright by URL http://www2s.biglobe.ne.jp/~club_tom/

function openWinF(aa,bb,w,h,re) {
	var newWin=window.open(aa,bb,"width="+w+",height="+h+",left=0,top=0,scrollbars=no,resizable=yes");
	if (document.all || document.getElementById || document.layers) {
		var w,h;
		w=screen.width;
		h=screen.height;
		if (document.all) newWin.resizeTo(w*re,h*re);
		else if (document.getElementById || document.layers) {
			newWin.outerWidth=w*re;
			newWin.outerHeight=h*re;
		}
	}
}
