function browserTest(aHTMLfile) {
if (navigator.appName == 'Netscape' && parseFloat(navigator.appVersion) >= 3)
   {
    putInWindow(aHTMLfile);
   }
else {
       if (navigator.appName == 'Microsoft Internet Explorer'  && parseFloat(navigator.appVersion) >= 4)
       {
         putInWindow(aHTMLfile);
       }

     }
}

 function putInWindow(theHTMLfile) {
    
   _PhotoWindow = window.open(theHTMLfile, '_MGBIO', 'width=550,height=460,scrollbars=yes,location=yes');
   _PhotoWindow.focus();


 }

