function getBrowser() {
   var w3c = ( document.getElementById ) ? true : false;
   var ie  = ( document.styleSheets && document.all ) ? true : false;
   var ie5 = ( ie && w3c ) ? true : false;
   var ns4 = ( document.layers ) ? true : false;
   var ns6 = ( w3c && !document.all && document.bgColor ) ? true : false;
   var opera = ( window.opera ) ? true : false;

   if ( opera ) {
	   return ('opera');
   } else if ( ns6 )
   {
   return ('ns6');
   } else if ( ns4 )
   {
   return ('ns4');
   } else if ( ie5 )
   {
   return ('ie5');
   } else if ( ie )
   {
   return ('ie');
   }
}

function setLargeImageFocus() {
   if ( myWindow != null )
   {
      try {
         myWindow.focus();
      } catch (e) {
         myWindow = null;
      }
   }
}

function showLargeImage(strImagePath,nWidth,nHeight)
{
   var strBigImage = strImagePath.substring( 0,strImagePath.lastIndexOf(".") ) + ".xr.jpg";
   if ( myWindow != null ) {
      myWindow.close();
   }
   myWindow = null;
   myWindow = window.open('about:blank','largeImage','resizable=no,menubar=no,status=no,toolbar=no,scrollbars=no,location=0,directories=0,dependant=no,dialog=no,modal=yes,unadorned=no,center=yes,width=' + (nWidth + 2) + ',height=' + (nHeight + 0) );
   myWindow.document.write("<html lang='en'><head><title>Large Image</title></head><body style='margin: 0px; border: 0px; padding: 0px;'><img  style='margin: 0px; border: 0px; padding: 0px;' id='image' align='left' valign='top' src='" + strBigImage + "'></img></body></html>");
   myWindow.focus();
}
