function SubWin(URL,Name,Scroll,Width,Height){
	var Option =""
		+"left=" +0
		+"screenX=" +0
		+",top=" +0
		+",screenY=" +0
		+",toolbar=" +0
		+",location=" +0
		+",status=" +0
		+",menubar=" +0
		+",scrollbars=" +Scroll
		+",resizable=" +1
		+",width=" +Width
		+",height=" +Height;


win=window.open(URL, Name, Option);
win.focus();
}
