function openWindow($file) 
{
   var newWin = window.open($file,'_blank','location,resizable,scrollbars,width=800,height=700');
   newWin.focus();
}

