//============================================================
//	著作権	：てらちんワールド通信社
//	WindowControl.js Ver1.0	Makeup:2001/04/20
//
//	※無断で改編、配布する事を禁止します。
//============================================================
//＜ウィンドウ制御関数群＞
//
//--------------------------------------------------
//＜関数＞	Right Click Non Non!
//＜引数＞	
//-------------------------------------------------

//-------------------------
//TARGET Open!(未使用)
//-------------------------
function funcout() {
   	window.name = document.formout.cb1.checked ? "" : "out";
}

//-------------------------
//CHange Image of OnMouseOver(未使用)
//-------------------------
function onMouseOverImage(flag, position) {
	document.images[position].src=ButtonImage[flag].src;
}

//-------------------------
//Open Window Main(未使用)
//-------------------------
function mainload(){
	var win0;
	win0=window.resizeTo(0,0);
	openwin('http://127.0.0.1/usr/menu.html', 'MENU');
}

//-------------------------
//Open New Window
//-------------------------
function openwin(url,targetwindow){
	var wo1;
	wo1 = window.open(url, targetwindow, 'toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes');
	wo1.location.href=url;
}

//-------------------------
//Open New Window no bar
//-------------------------
function openwinnobar(url,targetwindow){
	var wo1;
	wo1 = window.open(url, targetwindow, 'toolbar=yes,location=no,directories=no,status=no,scrollbars=yes,resizable=yes');
	wo1.location.href=url;
}

//-------------------------
//StatusBar Show String
//-------------------------
function showstatus(showstrings){
	window.status = showstrings;
}
