	var w;
	var Opened = false;
	function click2(path, ww, h) {
	var s;
	ww = ww+400;
	h = h+300;
	s = 'resizable=yes,status=no,menubar=no,toolbars=no,scrollbars=yes,width='+ww+',height='+h;
	if ((!Opened) || (w.closed))
	{
		Opened = true;
		w = window.open(path,"newwindow",s);
		w.focus();
	}
	else
	{
		w.location = path;
		w.focus();
	}
}
