function popwin(url,width,height)
{
if(isNaN(width))
  width="800";
else
  width = width + 20;

if(isNaN(height))
  height="600";
else
  height = height + 20;

  if(url != "")
	window.open(url,'popwin','width='+width+',height='+height);
}

