//-------------------------------
//	WINDOWOPEN
//-------------------------------

	//--------------------------------------
	//	name = windowのtarget名 w = 横 h= 縦
	//
	//	呼び出し例１：
	//	<A href="window.html" onClick=newscreen_n('win00',400,400) target="win00">
	//
	//	呼び出し例２：
	//	<A href="win/index.html" onClick=newscreen_n('window',800,600) target="window">
	//
	//--------------------------------------
	function newscreen_n(w,h){
			var WIN01;
			WIN01 = window.open("","win","width="+w+",height="+h+",resizable=1,scrollbars=1,toolbar=no");
			WIN01.focus();
			WIN01.document.close();
	}





