/* ウィンドウ&ロケーション */
function win_open(){
	var url = arguments[0];
	var tgt = arguments[1];
	var scrollbar = arguments[2];
	var resize = arguments[3];
	var width = arguments[4];
	var height = arguments[5];
	if(!arguments[6]){
		var location = 0;
	} else{
		var location = arguments[6];
	}

	newWin = window.open(url,tgt,'toolbar=0,location=' + location + ',directories=0,status=0,menubar=0,scrollbars=' + scrollbar + ',resizable=' + resize + ',width=' + width + ',height=' + height + '');
	newWin.focus();
}





function system_open(){
var wo1;
wo1=window.open("http://www.h-mahoroba.jp/contents/system/","001_01","width=640,height=540 scrollbars=no");
wo1.focus();
} 

