function sizedWindow(img) {
img1= new Image();
img1.src=(img);
Control(img);
}

function Control(img){
if((img1.width!=0)&&(img1.height!=0)) {
viewImg(img);
}
else{
fun="Control('"+img+"')";
interval=setTimeout(fun,20);
}
}

function viewImg(img) {
width=img1.width+20;
height=img1.height+20;
string='width='+width+',height='+height+',resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no';
/*end=window.open(img,'',string);*/
end=window.open(img,'',string);
  end.document.write('<html><head><title>Akordeón servis</title>');
  end.document.write('</head><body>');
  end.document.write('<a href="javascript:self.close()"><img src="'+img+'" alt="Akordeón servis" border="0"/></a>');
  end.document.write('</body></html>');
  end.document.close();
}
