/* Simply opens a new broswer window with certain */
/* properties preset.                             */
/* It is used in all of the map forms, hence why  */
/* it appears in a common file.                   */
   
function openInfoWindow(sLinkname) 
{
  window.open(sLinkname, 'newWin', 'toolbar, resizable');   
}

function openPictureWindow(sLinkname, iHeight, iWidth) 
{
  window.open(sLinkname, 'newWin', 'dependent=yes, width=' + iWidth + ', height=' + iHeight);   
}