//スクロールバーなし、サイズ変更不可
function nwin(url,name,wid,hei){
	window.open(url,name,'width='+wid+',height='+hei).focus() ;
}


//スクロールバーあり、サイズ変更可
function nwin2(url,name,wid,hei){
	window.open(url,name,'width='+wid+',height='+hei+',scrollbars=yes,resizable=yes').focus() ;
}


//クローズアップビュー
function closeup (url) {
	window.open ( '/products/monitors/'+url+'/closeup/' , 'closeup' , 'width=550,height=550' ) .focus() ;
}


//オプション（詳細ウィンドウ）
function opwin (url) {
	window.open ( '/products/monitors/popup/'+url+'.html' , 'option' , 'screenX=10,screenY=10,left=10,top=10,width=750,height=700,scrollbars=yes,resizable=yes' ) .focus() ;
}
