function popImage(imageURL,Width,Height){
imgWin=window.open('about:blank',null,'toolbar=no,width='+Width+',height='+Height+',left=10,top=10,directories=no,status=no,resizable=yes,menubar=no,scrollbars=yes');
with (imgWin.document){
writeln('<html><head><title></title><style>body{margin:0px;}</style></head>');
writeln('<body bgcolor="#A0E0A0" scroll="auto" onload="self.focus()" onblur="self.close()">');
writeln('<p align="center"><img src='+imageURL+'></p></body></html>');
close();
}}
function popWin(winURL,Width,Height){
myWin=window.open(winURL,null,'toolbar=no,width='+Width+',height='+Height+',left=10,top=10,directories=no,status=no,resizable=yes,menubar=no,scrollbars=yes');
}
function repaddl(address){
window.location.replace('mailto:'+address+'@'+'updown.org.uk');
}
function repadd(address){
document.write(address+'@'+'updown.org.uk');
}
