// MY LAP ONLINE用 ポップアップ
function OpnMyLap(){
	newWin=window.open('/mylap/Live01b.html','mylap','width=500,height=600,left=0,top=0,toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes');
	newWin.focus(); 
}

// 通常ポップアップ用
function subWin(wUrl,wName,wWidth,wHeight){
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + wWidth + ",height=" + wHeight;
	newWin=window.open(wUrl,wName,wOption);
	newWin.focus(); 
}
