function OpenWindow(link)
{
  var newWindow = window.open("","","scrollbars=1 resizable=1 width=800 height=600");
  newWindow.location = link;
}