function zoomImage(url, width, height) {
if(!url || !width || !height) return;
width += 20;
height += 40;
var win = window.open('','zoomimg','width='+width+',height='+height+'resizable=0,scrollbars=0,directories=0,location=0,menubar=0,status=0,toolbar=0');
if(win) {
win.document.open();
win.document.write('<html><head><title>fullvisning av bilde</title></head><body style="margin:0;padding:0;" onclick="self.close();">' + '<div align="center"><img src="'+url+'" border="0" alt=""></div>' + '</body></html>');
win.document.close();
win.focus();
}
}
