﻿function _openFullPreview(aImg)
{
    window.open(aImg.src, "guidemap_preview", "localtion=0,toolbar=0,status=0,resizable=1,width=510,height=420");
    return false;
}
function _sizeWindow() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  if(arguments[0]=="w") return myWidth;
  if(arguments[0]=="h") return myHeight;
}
function OpenWinOurteam(index){
    var strUrl = 'images/ourteam/photo.html?'  + index; 
    _width = 660;
    _height = 520;
    _left = (_sizeWindow("w") - _width)/2;
    _top = (_sizeWindow("h") - _height)/2;
    _screenX = _left;
    _screenY = _top;
    window.open(strUrl, "","menubar=no, status=no, toolbar=no, resizable=no, width="+ _width +", height="+ _height +", left="+ _left +", top="+ _top +", screenX="+ _screenX +", screenY="+ _screenY);
}
