/************************************************************************************
  Loading specific styles if IE detected
  
  Developer: Dima V. Fedorov <www.dimin.net>
  Copyright (C) VRL, UCSB <http://vision.ece.ucsb.edu>
  
  History:
    06/15/2004 15:12 - First creation
	
************************************************************************************/

if  ( ( navigator.appName == "Microsoft Internet Explorer" ) && 
      ( navigator.userAgent.indexOf("Opera") == -1 ) )  
{
  document.write("<link REL='stylesheet' HREF='/styles/vrl_ie.css' TYPE='text/css'>");
} 
  
if ( ( navigator.userAgent.indexOf("Konqueror") != -1 ) || 
     ( navigator.userAgent.indexOf("Safari") != -1 ) ||
     ( navigator.userAgent.indexOf("KHTML") != -1 ) 
   ) 
{
  document.write("<link REL='stylesheet' HREF='/styles/vrl_khtml.css' TYPE='text/css'>");
}   