<!-- 
function movepic(img_name,img_src) {
document[img_name].src=img_src;
}

function pop(imageURL, bredde, hojde){
var posx=(screen.availWidth/2)-(bredde/2);
var posy=(screen.availHeight/2)-(hojde/2);
var optIE='scrollbars=no,width='+bredde+',height='+hojde+',left='+posx+',top='+posy;
imgWin=window.open('about:blank','',optIE);
with (imgWin.document){
writeln('<html><head><title>Ulbækgård</title><meta http-equiv="imagetoolbar" content="no"><style>body{margin:0px;}</style>');
writeln('</head><body bgcolor="#D2A77C" scroll="no" onload="self.focus()" onblur="self.close()">');
writeln('<a onclick="self.close()"><img name="Billede" src='+imageURL+' style="display:block"></a></body></html>');
close();
}}
// -->