<!--
function openPage(tempPage, Scrollbars, Resizable, Menubar, Toolbar, Directories, Status, Location, Width, Height, Top, Left, IncludeURL) {
  if (IncludeURL == 'true'){
     tempPage = tempPage + '?src=' + document.URL;
  }
  params = 'scrollbars=' + Scrollbars + ',resizable=' + Resizable + ',menubar=' + Menubar + ',toolbar=' + Toolbar + ',directories=' + Directories + ',status=' + Status + ',location=' + Location + ',width=' + Width + ',height=' + Height + ',top=' + Top + ',left=' + Left
  newPage = window.open(tempPage,'', params);
}
//-->