
/*　ポップアップウィンドウ　*/
function popWin(pageurl){
	var refPopWin = window.open(pageurl,'Window','width=600,height=635,toolbar=1,location=0,status=0,menuber=0,scrollbars=1,resizable=1,top=0,left=0');
	refPopWin.focus();
}

/*　汎用ポップアップウィンドウ（幅高さ指定可）　*/
function subWin( targetRef, popwidth, popheight ,setSB){
var setSB = ( (arguments.length == 4) && (arguments[3] == 'scroll') )? 1:0;
var refPopWin = window.open(targetRef,'Window_' + popwidth + 'x' + popheight + '_sb' + setSB + '','width=' + popwidth + ',height=' + popheight + ',toolbar=0,location=0,status=0,menuber=0,scrollbars=' + setSB + ',resizable=1,top=0,left=0');
refPopWin.focus();
return false;
}
