
function openSubWindow( windowID, windowW, windowH, M, L, D, T, St, Sc  ){
	var param =
		'width=' + windowW + ',height=' + windowH +
		',menubar=' + M + ',location=' + L + ',directories=' + D + ',toolbar=' + T +
		',status=' + St + ',scrollbars=' + Sc + ',resizable=1';
	var newWindow = window.open( '', windowID, param );
	newWindow.focus();
}
