function popupImage(type, imgid, caption){
  var w =660;
  var h =720;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('imagepopup.aspx?t='+type+'&id='+imgid+'&ttl='+caption,'Image','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}
function fitPic() {
    if (window.innerWidth){
        iWidth = window.innerWidth;
        iHeight = window.innerHeight;
    }else{
        iWidth = document.body.clientWidth;
        iHeight = document.body.clientHeight;
    }
    var popup=document.getElementById("popup")
    
    if(popup.width<200) { popup.width=200; }
    if(popup.height<30) { popup.height=30; }
    iWidth = popup.width + 100;
    iHeight = popup.height + 310;

    window.resizeTo(iWidth, iHeight);
};
function openTerms(){
  var w =660;
  var h =720;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('terms.aspx','Terms','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=yes,statusbar=no,scrollbars=yes,resizable=yes');
	q.focus();
}