// JS General Utilities
// Bushfield.co.uk
// resp.: 
// last rev. 


//  SIZED POPUP
 
// POPUP IMAGES IN APPROPRIATELY SIZED WINDOW

function PopupPic(sPicURL) { 
        window.open("http://www.bushfielddown.co.uk/scripts/popup.html?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
      }

var temp=self.location.href.split("?");
var picUrl = (temp.length>1)?temp[1]:"";
var NS = (navigator.appName=="Netscape")?true:false;

      function fitPic() {
        iWidth = (NS)?window.innerWidth:document.body.clientWidth;
        iHeight = (NS)?window.innerHeight:document.body.clientHeight;
        iWidth = document.images[0].width - iWidth;
        iHeight = document.images[0].height - iHeight;
        window.resizeBy(iWidth, iHeight-1);
        self.focus();
      };