// JavaScript Document

function open_window( url, width, height , features )

{

	if (features=='')

		features = "Toolbar=1,Menubar=0,Top=100,Left=150,scrollbars=1";

	

	features += ",Width="+width+",Height="+height;

	

	var wnd = window.open(url, "subWnd", features);

	wnd.focus();

	return false;

}

