<!-- 
//==============================================================================
//	ポップアップウィンドウfree
//==============================================================================

function popup(loc,width,height,scrl) {
	var slush = loc.lastIndexOf("/");
	var piliod = loc.lastIndexOf(".");
	var namae = loc.substring(slush+1, piliod);
	var popWindow = window.open(loc, namae, 'resizable=1,toolbar=1,scrollbars='+scrl+',status=0,width='+width+',height='+height);
	if (popWindow.focus!=null) {
		popWindow.focus();
	}
}


//==============================================================================
//	ポップアップウィンドウfix
//==============================================================================

function popup1(loc) {
	var popup1Window = window.open(loc, '', 'resizable=1,toolbar=1,scrollbars=1,status=0,width=800,height=680');
	if (popup1Window.focus!=null) {
		popup1Window.focus();
	}
}



