// ----------------------------subwindow with NO SCROLL
function jissekiPop01(url){
	if(navigator.userAgent.indexOf('Mac') != -1) {	
		x=600
		y=740
		if(document.layers){
			x=x-0
			y=y+10
		}
	}
	else {
		x=600
		y=710
		if(document.layers){
			y=y+25
		}
	}

var subwin01;
subwin = window.open(url, 'fqpop01', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+x+',height='+y+',left=0,top=0');
		subwin.focus();
	}




