﻿//
// OpenInNewWindow
//
// Opens the given link in a new browser window.
//
function OpenInNewWindow(sURL, iHeight, iWidth)
{
  window.open(sURL,"_blank","status=0,toolbar=0,menubar=1,directories=0,resizable=1,scrollbars=1,height=" + iHeight + ",width=" + iWidth);
  //return(true);
}


