/* ウィンドウ&ロケーション */
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();
}