// JavaScript Document
function openImageWindow($file) 
{
   var newWin = window.open($file,'_blank','location,resizable,scrollbars,width=516,height=560');
   newWin.focus();
}
