<!-- 
/*
------------------------------------------------------------------------------
File Name: stylesheets_lib.js
Company: pH2 Enterprises
Author: Phillip J. Henslee II <ph2@ph2enterprises.com> ©2002
Purpose: Insert Browser specific style sheets
Functions: None
Date Created: January 15, 2002
Last Modified: January 30, 2002
Dependent Files: config.js, detection_lib.js
File Status: Optional
------------------------------------------------------------------------------
*/


/* 
------------------------------------------------------------------------
Function insertStyleSheets()
Purpose: dynamically inserts style sheets 
Arguments: none
------------------------------------------------------------------------
*/ 

function insertStyleSheets(){

	if (isNav3 | isNav4){
	        
		document.write('<link rel=stylesheet type="text/css" href="styles/netscape.css">');
		
		if (debugState == true){
			alert('Style Sheet styles/netscape.css inserted');
		}
	        
	}else if (isIe4plus ){
	   
		document.write('<link rel=stylesheet type="text/css" href="styles/default.css">');
		if (debugState == true){
				alert('Style Sheet styles/default.css inserted');
		}
		
	}else if (isNav6){
	
		document.write('<link rel=stylesheet type="text/css" href="styles/netscape6.css">');
		
		if (debugState == true){
				alert('Style Sheet styles/netscape6.css inserted');
		}
		
	}else{
	
	document.write('<link rel=stylesheet type="text/css" href="styles/default.css">');
		
		if (debugState == true){
				alert('Style Sheet styles/default.css inserted');
		}
	}
		
}	




// ** Insert Style Sheets

insertStyleSheets();

// -->









