// ----------------------------スクロールありのサブウインドウ

function columnPop01(url){
	if(navigator.userAgent.indexOf('Mac') != -1) {	
		x=500
		y=600
		if(document.layers){
			x=x+1
			y=y+0
		}
	}
	else {
		x=516
		y=600
		if(document.layers){
			x=x+1
			y=y-5
		}
	}
var subwin01;
subwin01 = window.open(url,'columnPop01','toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width='+x+',height='+y+',left=0,top=0');
		subwin01.focus();
	}