
/*-----------------------------------------
  共有Javascript
 -----------------------------------------*/

/* 実行確認ダイアログ */
function checkConfirm(msg)
{
	if(window.confirm(msg)) {
		return true;
	}
	return false;
}


/* ウィンドウ */
function newWindow(url, name, width, height, scroll)
{
	var options = new Array();
	if (width) options.push('width=' + width);
	if (height) options.push('height=' + height);
	if (scroll) options.push('scrollbars=' + 'yes');
	window.open(url, name, options.join(", "));
	return false;
}

/* ウィンドウ */
function targetWindow(url, target)
{
	window.open(url, target);
	return false;
}


function helpWindow(type, id, adminf)
{
	var file = adminf ? '../help.php' : './help.php';
	newWindow(file+'?type='+type+'&id='+id, 'help', 300, 200, 1)
}

function smsg(msg)
{
	window.status = msg ? msg : '';
}
