// @@ GLOBAL VARIABLES

var mainDomain="kygreen.co.uk";
var siteName="K.Y. Green - Independent Family Funeral Directors";
var stylesheet="main1.css"

// @@@@@ popup window to Image size and wrap in HTML @@@@@

function popupImg(img,addH,addW) {
  var w = ((addW) ? addW : 0);
  var h = ((addH) ? addH : 0);
  remoteWin = window.open("","photo","resizable=1,width=200,height=200,status=1,scrollbars="+(((h<0)||(w<0)) ? "1" : "0"));
  with (remoteWin.document) {
    open('text/html', 'replace');
    write('<html><head><meta http-equiv="imagetoolbar" content="no"><title>'+siteName+'</title><link rel="stylesheet" type="text/css" href="'+stylesheet+'"></head><body style="margin:10px;font-size:11px;" onload="resizeTo(document.popupImg.width+50+'+w+',document.popupImg.height+120+'+h+'); window.focus()"><div align="center"><img border="0" src="' + img + '" name="popupImg"><br><br>[<a href="javascript:window.close()">close window</a>]</div></body></html>');
    close();
  }
}


// @@@@@ generic popup window @@@@@

function popup(doc,name,s,w,h,r) {
  remoteWin=window.open(doc,name,"scrollbars=" + s + ",width=" + w + ",height=" + h + ",resizable=" + r);
  remoteWin.focus();
}
