/*
Copyright (c) 2002 SilverStream Software, LLC. All rights reserved. 

This program is an unpublished copyrighted work which is proprietary to 
SilverStream Software, LLC and contains confidential information that is 
not to be reproduced or disclosed to any other person or entity without 
prior written consent from SilverStream Software, LLC in each and every 
instance. 

WARNING: Unauthorized reproduction of this program as well as 
unauthorized preparation of derivative works based upon the program or 
distribution of copies by sale, rental, lease or lending are in 
violations of federal copyright laws and state trade secret laws, 
punishable by civil and criminal penalties. 
*/


<!-- 
//***********************************************************************************
//***********************************************************************************
// 
// stylesheet.js
// 
// This script is used by the eXtendCodeExamples html and jsp example files 
// to display the correct title and body style.
// 
// 
//***********************************************************************************
//***********************************************************************************

	if (navigator.platform != "Win32"){
		//alert("Unix platform");
     		document.write('<LINK REL=STYLESHEET HREF="examples_unix.css" TYPE="text/css">');
	} 
	else if (navigator.appName == "Netscape"){
		//alert("Netscape");
		document.write('<LINK REL=STYLESHEET HREF="examples_netscape.css" TYPE="text/css">');
	}
	else {
		//alert("Internet Explorer");
		document.write('<LINK REL=STYLESHEET HREF="examples_ie.css" TYPE="text/css">');
	}


//***********************************************************************************
//***********************************************************************************
// End of JavaScript code -->