// JavaScript Document
//====================================================================
//	■ポップアップ
//====================================================================

//layout
function popLayout(url){ 
	popwin=window.open(url,"","toolbar=no,scrollbars=yes,resizable=yes,width=640,height=700,left=20,top=20");
	if(popwin){ 
		if(popwin.open){ 
			popwin.focus(); 
		}	
	}
}
