function openZoomWindow(filePath)
{
 var html = "<html><head><title></title></head><body><img src='http://www.bima.se/" + filePath + "'/></body></html>";
 var openWindow = window.open("","newWin","scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no");
 openWindow.document.write(html);
 openWindow.document.close();
}
