var demowindow = null;
function plainwindow(url)
{
  if (!demowindow || demowindow.closed) {
    demowindow = window.open(url,"demo","width=808,height=604");
  }
  demowindow.focus();
}
