<!--
	var nw
	function popup(url, name, w, h)
	{
	  if (!nw || nw.closed)
	  {
	     nw = window.open(url, name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0, title=0,width=' + w + ',height=' + h);
     if(!nw.opener)
	    {
	      nw.opener
	    }
	    nw.document.close()
	  } 
	  else 
	  {
		nw.focus()
	  }
	}

//-->
